summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 265ab31..d1794b6 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -46,6 +46,8 @@
#include "zoomslider.h"
#include "canvaswidget.h"
+class Settings;
+
class Preset
{
public:
@@ -61,7 +63,7 @@ class MainWindow
{
Q_OBJECT
public:
- MainWindow();
+ MainWindow(Settings& settings);
~MainWindow();
public slots:
@@ -120,4 +122,6 @@ private:
Selections selections;
Selections selections_preview;
Player player;
+
+ Settings& settings;
};