summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 8542dc8a..a905a163 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -40,7 +40,6 @@ class Executable;
class CategoryFactory;
class LockedDialogBase;
class OrganizerCore;
-class StatusBar;
class PluginListSortProxy;
namespace BSA { class Archive; }
@@ -118,8 +117,6 @@ public:
QWidget *parent = 0);
~MainWindow();
- void storeSettings(Settings& settings) override;
- void readSettings(const Settings& settings);
void processUpdates(Settings& settings);
virtual ILockedWaitingForProcess* lock() override;
@@ -331,12 +328,6 @@ private:
bool m_WasVisible;
- // this has to be remembered because by the time storeSettings() is called,
- // the window is closed and the all bars are hidden
- bool m_menuBarVisible, m_statusBarVisible;
-
- std::unique_ptr<StatusBar> m_statusBar;
-
// last separator on the toolbar, used to add spacer for right-alignment and
// as an insert point for executables
QAction* m_linksSeparator;
@@ -685,11 +676,9 @@ private slots: // ui slots
void on_categoriesOrBtn_toggled(bool checked);
void on_managedArchiveLabel_linkHovered(const QString &link);
+ void storeSettings(Settings& settings);
+ void readSettings(const Settings& settings);
void setupModList();
- void showMenuBar(bool b);
- void showStatusBar(bool b);
};
-
-
#endif // MAINWINDOW_H