diff options
author | Thiago Macieira <thiago.macieira@intel.com> | 2017-04-01 21:22:05 -0700 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@intel.com> | 2017-04-04 06:52:45 +0000 |
commit | dd5347567023ab097f7d119c89d2e7153e4a8b86 (patch) | |
tree | 861c689d9ebddb8c296366e59514c8da9d80356e /src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h | |
parent | ec81bfafe16ca021b529813228a095177e302d42 (diff) | |
download | qtwayland-dd5347567023ab097f7d119c89d2e7153e4a8b86.tar.gz |
Fix Clang warning about unused private fields
qwaylandxcompositeeglwindow.h:69:35: warning: private field 'm_context' is not used [-Wunused-private-field]
qwaylandxcompositeeglwindow.h:75:21: warning: private field 'mBuffer' is not used [-Wunused-private-field]
Change-Id: I27b55fdf514247549455fffd14b179d94a725b7f
Reviewed-by: Johan Helsing <johan.helsing@qt.io>
Diffstat (limited to 'src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h')
-rw-r--r-- | src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h b/src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h index 5b7d492c..90b4cc73 100644 --- a/src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h +++ b/src/hardwareintegration/client/xcomposite-egl/qwaylandxcompositeeglwindow.h @@ -66,13 +66,11 @@ private: void createEglSurface(); QWaylandXCompositeEGLClientBufferIntegration *m_glxIntegration; - QWaylandXCompositeEGLContext *m_context; QWaylandBuffer *m_buffer; Window m_xWindow; EGLConfig m_config; EGLSurface m_surface; - QWaylandBuffer *mBuffer; }; } |