From f1844014dd90470a922fb491c0c3a3697c6d5291 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Sun, 1 May 2016 16:02:46 -0400 Subject: [PATCH] declarativeimports/core/windowthumbnail.h - fix -Wreorder warning --- src/declarativeimports/core/windowthumbnail.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/declarativeimports/core/windowthumbnail.h b/src/declarativeimports/core/windowthumbnail.h index 7ee2d509a..7276f95de 100644 --- a/src/declarativeimports/core/windowthumbnail.h +++ b/src/declarativeimports/core/windowthumbnail.h @@ -127,19 +127,19 @@ private: void resolveGLXFunctions(); bool loadGLXTexture(); void bindGLXTexture(); + xcb_pixmap_t m_glxPixmap; QFunctionPointer m_bindTexImage; QFunctionPointer m_releaseTexImage; - xcb_pixmap_t m_glxPixmap; #endif // HAVE_GLX #if HAVE_EGL bool xcbWindowToTextureEGL(WindowTextureNode *textureNode); void resolveEGLFunctions(); void bindEGLTexture(); bool m_eglFunctionsResolved; + EGLImageKHR m_image; QFunctionPointer m_eglCreateImageKHR; QFunctionPointer m_eglDestroyImageKHR; QFunctionPointer m_glEGLImageTargetTexture2DOES; - EGLImageKHR m_image; #endif // HAVE_EGL #endif };