aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrezso <rezso@rezso.net>2015-07-05 22:46:37 +0200
committerrezso <rezso@rezso.net>2015-07-05 22:46:37 +0200
commit440e6f8b90f5c0414f60cdcedeb6caa057e1f4d2 (patch)
tree3831f6538d13d4a1021c1ba850c6f157786e6eda
parentAdd a new PanelWidget to lumina-config. This allows the user to add more than... (diff)
downloadlumina-440e6f8b90f5c0414f60cdcedeb6caa057e1f4d2.tar.gz
lumina-440e6f8b90f5c0414f60cdcedeb6caa057e1f4d2.tar.bz2
lumina-440e6f8b90f5c0414f60cdcedeb6caa057e1f4d2.zip
fix build with qt 5.5
https://gist.github.com/rezso/c050801e6fa5b4b10715
-rw-r--r--lumina-config/LPlugins.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lumina-config/LPlugins.h b/lumina-config/LPlugins.h
index a123f4d3..53c26977 100644
--- a/lumina-config/LPlugins.h
+++ b/lumina-config/LPlugins.h
@@ -7,6 +7,7 @@
#ifndef _LUMINA_DESKTOP_CONFIG_PLUGINS_H
#define _LUMINA_DESKTOP_CONFIG_PLUGINS_H
+#include <QObject>
#include <QHash>
#include <QString>
#include <QStringList>
@@ -42,4 +43,4 @@ private:
void LoadMenuPlugins();
void LoadColorItems();
};
-#endif \ No newline at end of file
+#endif
bgstack15