diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-23 19:07:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 19:07:27 +0000 |
commit | c307ae2402fbe027020c697c1ca27c1966b5c1aa (patch) | |
tree | 36fbf209e09c8ea56d5738735828bdcd9e7856d6 /src | |
parent | 6d9661939f2dacc780e360586964ebf84504d43b (diff) | |
parent | aa35e51fcd4527220ce6d793cf6736bbac25aea5 (diff) |
Merge pull request #4701 from lioncash/unused-proto
install_dialog: Remove unused function prototype
Diffstat (limited to 'src')
-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: explicit InstallDialog(QWidget* parent, const QStringList& files); ~InstallDialog() override; - QStringList GetFiles() const; - bool ShouldOverwriteFiles() const; - int GetMinimumWidth() const; + [[nodiscard]] QStringList GetFiles() const; + [[nodiscard]] int GetMinimumWidth() const; private: QListWidget* file_list; |