diff options
| author | 2020-09-23 19:07:27 +0000 | |
|---|---|---|
| committer | 2020-09-23 19:07:27 +0000 | |
| commit | c307ae2402fbe027020c697c1ca27c1966b5c1aa (patch) | |
| tree | 36fbf209e09c8ea56d5738735828bdcd9e7856d6 /src | |
| parent | Merge pull request #4700 from lioncash/copies (diff) | |
| parent | install_dialog: Make use of [[nodiscard]] where applicable (diff) | |
| download | yuzu-c307ae2402fbe027020c697c1ca27c1966b5c1aa.tar.gz yuzu-c307ae2402fbe027020c697c1ca27c1966b5c1aa.tar.xz yuzu-c307ae2402fbe027020c697c1ca27c1966b5c1aa.zip | |
Merge pull request #4701 from lioncash/unused-proto
install_dialog: Remove unused function prototype
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/install_dialog.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/install_dialog.h b/src/yuzu/install_dialog.h index e4aba1b06..68e03fe4e 100644 --- a/src/yuzu/install_dialog.h +++ b/src/yuzu/install_dialog.h | |||
| @@ -20,9 +20,8 @@ public: | |||
| 20 | explicit InstallDialog(QWidget* parent, const QStringList& files); | 20 | explicit InstallDialog(QWidget* parent, const QStringList& files); |
| 21 | ~InstallDialog() override; | 21 | ~InstallDialog() override; |
| 22 | 22 | ||
| 23 | QStringList GetFiles() const; | 23 | [[nodiscard]] QStringList GetFiles() const; |
| 24 | bool ShouldOverwriteFiles() const; | 24 | [[nodiscard]] int GetMinimumWidth() const; |
| 25 | int GetMinimumWidth() const; | ||
| 26 | 25 | ||
| 27 | private: | 26 | private: |
| 28 | QListWidget* file_list; | 27 | QListWidget* file_list; |