aboutsummaryrefslogtreecommitdiff
path: root/lumina-screenshot/MainUI.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-14 16:04:04 -0400
committerKen Moore <ken@pcbsd.org>2014-10-14 16:04:04 -0400
commitcbadbfe43ee63a09a4f915b055affe5b7b86c7ad (patch)
tree2526828e112c2b7cb83fbaa96b9d980242c866b0 /lumina-screenshot/MainUI.h
parentFinish up the rest of the new Lumina Theme engine and the utilities for editi... (diff)
parentMerge pull request #19 from Nanolx/master (diff)
downloadlumina-cbadbfe43ee63a09a4f915b055affe5b7b86c7ad.tar.gz
lumina-cbadbfe43ee63a09a4f915b055affe5b7b86c7ad.tar.bz2
lumina-cbadbfe43ee63a09a4f915b055affe5b7b86c7ad.zip
Merge branch 'master' of github.com:pcbsd/lumina
Conflicts: lumina-screenshot/MainUI.cpp
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 889e42e2..c350f366 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>
@@ -37,6 +38,7 @@ private:
QPixmap cpic; //current picture
QString ppath; //previous file path
WId cwin; //current window to screenshot
+ QSettings *settings;
private slots:
//Button Slots
@@ -51,4 +53,4 @@ private slots:
void getPixmap(); //set the "cpic" variable to the new screenshot
};
-#endif \ No newline at end of file
+#endif
bgstack15