summaryrefslogtreecommitdiffstats
path: root/src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@theqtcompany.com>2015-06-03 14:10:19 +0200
committerJørgen Lind <jorgen.lind@theqtcompany.com>2015-06-05 07:48:17 +0000
commitb3d09eceb83e9d34906144d98f3de727679df6f0 (patch)
tree94377fff629944d35743b7f230f1e4aa5bab48a7 /src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h
parentbf0bdc5fbbb2b66d3ec41a600ef76e526c8ac278 (diff)
Move the function helper to its own file
Also make it a class so a forward header is generated by syncqt Change-Id: Ibab6b925dc6e9dab1b617b9b4027a4144e4a3773 Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com> Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
Diffstat (limited to 'src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h')
-rw-r--r--src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h b/src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h
index 87e19e6a45..66bfb72307 100644
--- a/src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h
+++ b/src/platformheaders/xcbfunctions/qxcbintegrationfunctions.h
@@ -34,7 +34,7 @@
#ifndef QXCBINTEGRATIONFUNCTIONS_H
#define QXCBINTEGRATIONFUNCTIONS_H
-#include "qxcbfunctionshelper.h"
+#include <QtPlatformHeaders/QPlatformHeaderHelper>
QT_BEGIN_NAMESPACE
@@ -45,7 +45,7 @@ public:
static const QByteArray xEmbedSystemTrayVisualHasAlphaChannelIdentifier() { return QByteArrayLiteral("XcbXEmbedSystemTrayVisualHasAlphaChannel"); }
static bool xEmbedSystemTrayVisualHasAlphaChannel()
{
- return QXcbFunctionsHelper::callPlatformFunction<bool, XEmbedSystemTrayVisualHasAlphaChannel>(xEmbedSystemTrayVisualHasAlphaChannelIdentifier());
+ return QPlatformHeaderHelper::callPlatformFunction<bool, XEmbedSystemTrayVisualHasAlphaChannel>(xEmbedSystemTrayVisualHasAlphaChannelIdentifier());
}
};