Marco wrote: > 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 ? > > Hello,
since two weeks the Release Candidate for Qt/WinCE is released. A Release Candidate is the last release before the final. Thus, only critical bugs are allowed to be integrated to avoid *any* potential side-effect and provide a maximum of stability in the final version for *all* supported platforms. Critical bugs are defined by either compile errors or complete malfunction of a Qt application on the targeted platform. The described issue does not fulfill any of these categories and therefore will be fixed with the Qt 4.4.1 release. Best Regards, Maurice Kalinowski > 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 > _______________________________________________ Qtce-preview-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qtce-preview-feedback
