diff options
author | saturneric <[email protected]> | 2024-01-08 07:54:12 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-08 07:54:12 +0000 |
commit | 40624cf05b66cb320f71eb5cb0b459dee8e91479 (patch) | |
tree | 945e4093395b3cc4836b0b33fbf8b9b0b839d381 /src/ui/dialog/QuitDialog.h | |
parent | doc: change binaries output target from release to artifacts (diff) | |
download | GpgFrontend-40624cf05b66cb320f71eb5cb0b459dee8e91479.tar.gz GpgFrontend-40624cf05b66cb320f71eb5cb0b459dee8e91479.zip |
fix: move quit dialog to center of parent
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: |