diff options
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r-- | qt-ui/mainwindow.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h index 9e15e58b4..6361870b2 100644 --- a/qt-ui/mainwindow.h +++ b/qt-ui/mainwindow.h @@ -3,6 +3,7 @@ #include <QMainWindow> + namespace Ui { class MainWindow; @@ -13,12 +14,18 @@ class DiveNotes; class Stats; class Equipment; -class MainWindow : public QMainWindow{ - Q_OBJECT +class MainWindow : public QMainWindow +{ +Q_OBJECT public: MainWindow(); + +private Q_SLOTS: + + void on_actionNew_triggered(); + private: Ui::MainWindow *ui; }; -#endif
\ No newline at end of file +#endif |