diff options
Diffstat (limited to 'plugingui/mainwindow.h')
-rw-r--r-- | plugingui/mainwindow.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugingui/mainwindow.h b/plugingui/mainwindow.h index 8a2f141..93ff416 100644 --- a/plugingui/mainwindow.h +++ b/plugingui/mainwindow.h @@ -62,7 +62,10 @@ private: TabWidget tabs{this}; - MainTab main_tab{this}; + Settings& settings; + SettingsNotifier settings_notifier{settings}; + + MainTab main_tab; // TODO use some nice textfield widget here TextEdit gpl_text_field{&tabs}; @@ -81,9 +84,6 @@ private: bool closing{false}; - Settings& settings; - SettingsNotifier settings_notifier{settings}; - Resource gpl{":../../COPYING"}; Font font; |