Cocoa: Fix combo box flicker on show.
authorMorten Sorvig <morten.sorvig@nokia.com>
Fri, 30 Mar 2012 07:59:12 +0000 (09:59 +0200)
committerQt by Nokia <qt-info@nokia.com>
Fri, 30 Mar 2012 10:20:39 +0000 (12:20 +0200)
Replace Q_WS_MAC -> Q_OS_MAC, restore Qt 4 behavior
that does not disable updates on first show.

Change-Id: Ibc7f58add2a44c95879bd3c4772cea36dd7905fa
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
src/widgets/widgets/qcombobox.cpp

index dc1e0db..bea4061 100644 (file)
@@ -2468,7 +2468,7 @@ void QComboBox::showPopup()
     }
     container->setGeometry(listRect);
 
-#ifndef Q_WS_MAC
+#ifndef Q_OS_MAC
     const bool updatesEnabled = container->updatesEnabled();
 #endif
 
@@ -2484,7 +2484,7 @@ void QComboBox::showPopup()
 // If updates are disabled at this point we'll miss our chance at painting the popup
 // menu before it's shown, causing flicker since the window then displays the standard gray
 // background.
-#ifndef Q_WS_MAC
+#ifndef Q_OS_MAC
     container->setUpdatesEnabled(false);
 #endif
 
@@ -2498,7 +2498,7 @@ void QComboBox::showPopup()
                              ? QAbstractItemView::PositionAtCenter
                              : QAbstractItemView::EnsureVisible);
 
-#ifndef Q_WS_MAC
+#ifndef Q_OS_MAC
     container->setUpdatesEnabled(updatesEnabled);
 #endif