summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
authorFabien Freling <fabien.freling@nokia.com>2011-01-26 11:43:02 (GMT)
committerFabien Freling <fabien.freling@nokia.com>2011-01-26 11:43:02 (GMT)
commite1a1ff63d3078b01045a526a54d923ac0bae1032 (patch)
treea67afb384d375f082a373a4a1ca1df7bd4893e7b /src/gui/kernel
parent26d25ab46900d84b44e451c2a0a986bfed94a3f4 (diff)
downloadQt-e1a1ff63d3078b01045a526a54d923ac0bae1032.zip
Qt-e1a1ff63d3078b01045a526a54d923ac0bae1032.tar.gz
Qt-e1a1ff63d3078b01045a526a54d923ac0bae1032.tar.bz2
Change variable name.
Reviewed-by: Richard Moe Gustavsen
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qwidget.cpp2
-rw-r--r--src/gui/kernel/qwidget_p.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index 056aea6..88348cd 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -324,7 +324,7 @@ QWidgetPrivate::QWidgetPrivate(int version)
hasOwnContext = false;
isInUnifiedToolbar = false;
unifiedSurface = 0;
- askedForFlush = false;
+ flushRequested = false;
#endif // QT_MAC_USE_COCOA
#ifdef QWIDGET_EXTRA_DEBUG
static int count = 0;
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h
index f5a965c..4e91358 100644
--- a/src/gui/kernel/qwidget_p.h
+++ b/src/gui/kernel/qwidget_p.h
@@ -860,7 +860,7 @@ public:
bool isInUnifiedToolbar;
QWindowSurface *unifiedSurface;
QPoint toolbar_offset;
- bool askedForFlush;
+ bool flushRequested;
#endif // QT_MAC_USE_COCOA
void determineWindowClass();
void transferChildren();