diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-23 19:22:01 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-23 19:22:04 +0200 |
commit | aa35e51fcd4527220ce6d793cf6736bbac25aea5 (patch) | |
tree | 296ee59682efb5e8d130932bd92b6f7e004a229f | |
parent | install_dialog: Remove unused function prototype (diff) | |
download | yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar.gz yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar.bz2 yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar.lz yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar.xz yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.tar.zst yuzu-aa35e51fcd4527220ce6d793cf6736bbac25aea5.zip |
-rw-r--r-- | src/yuzu/install_dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/install_dialog.h b/src/yuzu/install_dialog.h index 4293b3722..68e03fe4e 100644 --- a/src/yuzu/install_dialog.h +++ b/src/yuzu/install_dialog.h @@ -20,8 +20,8 @@ public: explicit InstallDialog(QWidget* parent, const QStringList& files); ~InstallDialog() override; - QStringList GetFiles() const; - int GetMinimumWidth() const; + [[nodiscard]] QStringList GetFiles() const; + [[nodiscard]] int GetMinimumWidth() const; private: QListWidget* file_list; |