aboutsummaryrefslogtreecommitdiff
path: root/lumina-screenshot/MainUI.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-screenshot/MainUI.h')
-rw-r--r--lumina-screenshot/MainUI.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lumina-screenshot/MainUI.h b/lumina-screenshot/MainUI.h
index 5ebe20f6..0e60bda6 100644
--- a/lumina-screenshot/MainUI.h
+++ b/lumina-screenshot/MainUI.h
@@ -15,6 +15,7 @@
#include <QDesktopWidget>
#include <QDir>
#include <QInputDialog>
+#include <QSettings>
#include <LuminaXDG.h>
#include <LuminaUtils.h>
@@ -34,6 +35,7 @@ private:
QPixmap cpic; //current picture
QString ppath; //previous file path
WId cwin; //current window to screenshot
+ QSettings *settings;
private slots:
//Button Slots
@@ -48,4 +50,4 @@ private slots:
void getPixmap(); //set the "cpic" variable to the new screenshot
};
-#endif \ No newline at end of file
+#endif
bgstack15