Just a question to understand how Trolltech handles bugs: Qt 4.4 CE isn't released, so why this bugfix doesn't comes with Qt.4.4 ?
Jörg Bornemann wrote: > Hello George, > > Thanks for reporting this bug! The issue will be fixed in 4.4.1. > There is a small typo in qmessagebox.cpp that causes the problem on > devices with a screen width < 500 pixels. > Here is the patch that will solve the problem: > > ==== //depot/qt/4.4/src/gui/dialogs/qmessagebox.cpp#6 - > c:\depot\qt\4.4\src\gui\ > dialogs\qmessagebox.cpp ==== > @@ -341,7 +341,7 @@ > #ifndef Q_OS_WINCE > int softLimit = qMin(screenSize.width()/2, 500); > #else > - int softLimit = qMin(screenSize.width() * 4 / 3, 500); > + int softLimit = qMin(screenSize.width() * 3 / 4, 500); > #endif //Q_OS_WINCE > #endif > > > > Best Regards, > > Jörg > _______________________________________________ > Qtce-preview-feedback mailing list > [email protected] > http://lists.trolltech.com/mailman/listinfo/qtce-preview-feedback > > _______________________________________________ Qtce-preview-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qtce-preview-feedback
