diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-12-24 13:56:13 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-12-24 13:56:13 (GMT) |
commit | e475d3e7fc023109478726555b676203cf8c4c5c (patch) | |
tree | c9603895b22279d0aa2876cac6e174d7d0aad57e /src/gui/dialogs | |
parent | 0f35089dec33ff0b2d424601b031dcd4446d3438 (diff) | |
parent | 9d26b5ad31a946ef631ca29da7379571267efddf (diff) | |
download | Qt-e475d3e7fc023109478726555b676203cf8c4c5c.zip Qt-e475d3e7fc023109478726555b676203cf8c4c5c.tar.gz Qt-e475d3e7fc023109478726555b676203cf8c4c5c.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Prevented infinite loop in QMoviePrivate::next().
Added int overloads to QPoint operator* and operator*=.
tst_qmessagebox: add debug to know why it fails
QMessageBox wrong Show/Hide Details button label
Diffstat (limited to 'src/gui/dialogs')
-rw-r--r-- | src/gui/dialogs/qmessagebox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/qmessagebox.cpp b/src/gui/dialogs/qmessagebox.cpp index 224a176..af9616d 100644 --- a/src/gui/dialogs/qmessagebox.cpp +++ b/src/gui/dialogs/qmessagebox.cpp @@ -1925,7 +1925,7 @@ void QMessageBoxPrivate::retranslateStrings() { #ifndef QT_NO_TEXTEDIT if (detailsButton) - detailsButton->setLabel(detailsText->isHidden() ? HideLabel : ShowLabel); + detailsButton->setLabel(detailsText->isHidden() ? ShowLabel : HideLabel); #endif } |