summaryrefslogtreecommitdiffstats
path: root/src/gui/styles/qwindowsstyle.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-12-23 11:11:11 +0100
committerOlivier Goffart <olivier.goffart@nokia.com>2010-12-23 11:11:11 +0100
commita315c693d0f3dd64711b8459d86b89ddc48e8c1a (patch)
tree8f966269d797f97d41847c5bb7283297cee20b47 /src/gui/styles/qwindowsstyle.cpp
parentd37a3529ec883985b2967265f0797d749db74308 (diff)
parente6694ebe4081b807b1bb0946e17e73840019ec6d (diff)
Merge remote branch 'origin/4.7' into qt-master-from-4.7
Conflicts: src/s60main/newallocator_hook.cpp tools/runonphone/serenum_unix.cpp
Diffstat (limited to 'src/gui/styles/qwindowsstyle.cpp')
-rw-r--r--src/gui/styles/qwindowsstyle.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/styles/qwindowsstyle.cpp b/src/gui/styles/qwindowsstyle.cpp
index d994b9b59d..2604f1fddf 100644
--- a/src/gui/styles/qwindowsstyle.cpp
+++ b/src/gui/styles/qwindowsstyle.cpp
@@ -130,6 +130,7 @@ QWindowsStylePrivate::QWindowsStylePrivate()
pSHGetStockIconInfo = (PtrSHGetStockIconInfo)shellLib.resolve("SHGetStockIconInfo");
}
#endif
+ startTime.start();
}
// Returns true if the toplevel parent of \a widget has seen the Alt-key
@@ -2396,8 +2397,10 @@ void QWindowsStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPai
#ifndef QT_NO_PROGRESSBAR
case CE_ProgressBarContents:
if (const QStyleOptionProgressBar *pb = qstyleoption_cast<const QStyleOptionProgressBar *>(opt)) {
-
QRect rect = pb->rect;
+ if (!rect.isValid())
+ return;
+
bool vertical = false;
bool inverted = false;