diff options
Diffstat (limited to '')
-rwxr-xr-x | src/ui/dialog/QuitDialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/QuitDialog.h b/src/ui/dialog/QuitDialog.h index f6477e4e..0c25c2c8 100755 --- a/src/ui/dialog/QuitDialog.h +++ b/src/ui/dialog/QuitDialog.h @@ -55,14 +55,14 @@ class QuitDialog : public GeneralDialog { * @return true * @return false */ - [[nodiscard]] bool IsDiscarded() const; + [[nodiscard]] auto IsDiscarded() const -> bool; /** * @brief Get the Tab Ids To Save object * * @return QList<int> */ - QList<int> GetTabIdsToSave(); + auto GetTabIdsToSave() -> QList<int>; private slots: |