Cocoa: silence warning about QCocoaWindow member initialization order

qcocoawindow.mm:99:7: warning: field 'm_glContext' will be initialized
      after field 'm_inConstructor' [-Wreorder]
    , m_glContext(0)
      ^

Change-Id: I9e090ddeeaeea581b480b2e7b2b99360062c0632
Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
bb10
Bradley T. Hughes 2012-03-21 10:37:20 +01:00 committed by Qt by Nokia
parent 7ecbc49c55
commit 6540a42ee0
1 changed files with 1 additions and 1 deletions

View File

@ -96,8 +96,8 @@
QCocoaWindow::QCocoaWindow(QWindow *tlw)
: QPlatformWindow(tlw)
, m_nsWindow(0)
, m_glContext(0)
, m_inConstructor(true)
, m_glContext(0)
{
QCocoaAutoReleasePool pool;