aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-08-30 13:07:05 -0400
committerKen Moore <ken@pcbsd.org>2016-08-30 13:07:05 -0400
commit68e81cdf38713077a04d784a986655ebd4da662f (patch)
treeed5a9611a1f405423ca5e3e5010fbb5c7fa11686 /src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
parentWhen saving autostart preferences, make sure the local autostart directory ex... (diff)
downloadlumina-68e81cdf38713077a04d784a986655ebd4da662f.tar.gz
lumina-68e81cdf38713077a04d784a986655ebd4da662f.tar.bz2
lumina-68e81cdf38713077a04d784a986655ebd4da662f.zip
Make sure that <QStringList> is included explicitly within the ScreenSettings class - some compilers complain about this.
Diffstat (limited to 'src-qt5/core-utils/lumina-xconfig/ScreenSettings.h')
-rw-r--r--src-qt5/core-utils/lumina-xconfig/ScreenSettings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h b/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
index 770c4f95..5826f804 100644
--- a/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
+++ b/src-qt5/core-utils/lumina-xconfig/ScreenSettings.h
@@ -10,6 +10,7 @@
#include <QString>
#include <QList>
#include <QRect>
+#include <QStringList>
class ScreenInfo{
public:
bgstack15