Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.3.1, 5.5.0
-
None
-
Ubuntu 15.04 64 bit
Windows 7 64 bit
Description
- Build and run this simple program:
#include <QApplication> #include <QLabel> #include <QToolTip> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel l; l.resize(300, 300); // l.show(); QToolTip::showText(QPoint(100, 100), "TT"); app.exec(); }
It will just show the QToolTip.
- Now uncomment the line l.show();, build and run the project again.
Now the QLabel will be shown, but the QToolTip won't be shown anymore. There are no warnings or error messages.
Both, the QLabel and the QToolTip should be shown. With Qt 4.8.7, this works correctly.
Attachments
Issue Links
- replaces
-
QTBUG-47821 [REG Qt 4.8.7 -> Qt 5.3.1] Trivial correct code produces error message from QWindowsWindow::setGeometryDp
-
- Closed
-