summaryrefslogtreecommitdiffstats
path: root/src/client/hardwareintegration
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@digia.com>2013-11-21 14:46:38 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-27 15:32:48 +0100
commit5361e7778c31ad8da53be2c394faba6c2f3b7f3d (patch)
tree0869806d379c8ef610257a1248d41599d4fc0488 /src/client/hardwareintegration
parentab30cabb6383413ee3b2913615d75082c0c55686 (diff)
Change constructor of QWaylandClientBufferIntegration
For QWaylandClientBufferIntegrations to be loadable from plugins the constructor shold not take any arguments, but give the display in the initialize function Change-Id: Ie38555120d7f29c6ba7eef0f095837235782684d Reviewed-by: Andy Nichols <andy.nichols@digia.com>
Diffstat (limited to 'src/client/hardwareintegration')
-rw-r--r--src/client/hardwareintegration/qwaylandclientbufferintegration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/hardwareintegration/qwaylandclientbufferintegration.h b/src/client/hardwareintegration/qwaylandclientbufferintegration.h
index 12468537e..7f4fde9b3 100644
--- a/src/client/hardwareintegration/qwaylandclientbufferintegration.h
+++ b/src/client/hardwareintegration/qwaylandclientbufferintegration.h
@@ -60,7 +60,7 @@ public:
QWaylandClientBufferIntegration();
virtual ~QWaylandClientBufferIntegration();
- virtual void initialize() = 0;
+ virtual void initialize(QWaylandDisplay *display) = 0;
virtual bool waitingForEvents() { return false; }
virtual bool supportsThreadedOpenGL() const { return false; }