aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h
diff options
context:
space:
mode:
authorq5sys <jt@obs-sec.com>2017-07-18 17:37:06 -0400
committerq5sys <jt@obs-sec.com>2017-07-18 17:37:06 -0400
commit2b41fac681c5b94206e78c5995551d033467ae01 (patch)
tree12f0f70f18bfbab0bca82c4f536d1fc5b13f3b95 /src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h
parentget lthemeengine building successfully (diff)
downloadlumina-2b41fac681c5b94206e78c5995551d033467ae01.tar.gz
lumina-2b41fac681c5b94206e78c5995551d033467ae01.tar.bz2
lumina-2b41fac681c5b94206e78c5995551d033467ae01.zip
apply path patch
Diffstat (limited to 'src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h')
-rw-r--r--src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h b/src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h
index 7493b39c..171f720a 100644
--- a/src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h
+++ b/src-qt5/core/lumina-theme-engine/src/lthemeengine/lthemeengine.h
@@ -35,8 +35,8 @@
#define LTHEMEENGINE_TOSTRING(s) #s
#define LTHEMEENGINE_STRINGIFY(s) LTHEMEENGINE_TOSTRING(s)
-#define LTHEMEENGINE_VERSION_INT (LTHEMEENGINE_VERSION_MAJOR<<8 | QT5CT_VERSION_MINOR)
-#define LTHEMEENGINE_VERSION_STR LTHEMEENGINE_STRINGIFY(QT5CT_VERSION_MAJOR.QT5CT_VERSION_MINOR)
+#define LTHEMEENGINE_VERSION_INT (LTHEMEENGINE_VERSION_MAJOR<<8 | LTHEMEENGINE_VERSION_MINOR)
+#define LTHEMEENGINE_VERSION_STR LTHEMEENGINE_STRINGIFY(LTHEMEENGINE_VERSION_MAJOR.QT5CT_VERSION_MINOR)
#include <QString>
#include <QStringList>
@@ -48,9 +48,9 @@ public:
static QString configFile();
static QStringList iconPaths();
static QString userStyleSheetPath();
- static QString sharedStyleSheetPath();
+ static QStringList sharedStyleSheetPath();
static QString userColorSchemePath();
- static QString sharedColorSchemePath();
+ static QStringList sharedColorSchemePath();
static QString systemLanguageID();
private:
bgstack15