diff options
author | Sky <git@bunnies.cc> | 2014-01-02 02:20:34 +0000 |
---|---|---|
committer | Sky <git@bunnies.cc> | 2014-01-02 02:20:34 +0000 |
commit | eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4 (patch) | |
tree | 2befb9245b098a6b6368786791d4d51a10b61a64 /gui/dialogs/SettingsDialog.h | |
parent | 7f89da20439090cee0cd3090be582e263e25d6a1 (diff) | |
download | MultiMC-eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4.tar MultiMC-eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4.tar.gz MultiMC-eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4.tar.lz MultiMC-eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4.tar.xz MultiMC-eb4e7d3f6771d5c5fb6d70557c8013f745e72ca4.zip |
Save/restore settings dialog (and instance specific settings) window geometry
Diffstat (limited to 'gui/dialogs/SettingsDialog.h')
-rw-r--r-- | gui/dialogs/SettingsDialog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/dialogs/SettingsDialog.h b/gui/dialogs/SettingsDialog.h index bcf57a80..11fdb696 100644 --- a/gui/dialogs/SettingsDialog.h +++ b/gui/dialogs/SettingsDialog.h @@ -41,7 +41,8 @@ public: void loadSettings(SettingsObject *s); protected: - virtual void showEvent(QShowEvent *); + virtual void showEvent(QShowEvent *ev); + virtual void closeEvent(QCloseEvent *ev); private slots: @@ -64,6 +65,8 @@ slots: void on_buttonBox_accepted(); + void on_buttonBox_rejected(); + void on_javaDetectBtn_clicked(); void on_javaTestBtn_clicked(); |