Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
4.7.0
-
None
Description
The following test application used to create native window id right away in 4.6, but not anymore in 4.7:
#include <QtGui> int main(int argc, char *argv[]) { QApplication app(argc, argv); QWidget w; w.setAttribute(Qt::WA_NativeWindow); w.setAttribute(Qt::WA_DontCreateNativeAncestors); w.createWinId(); QWidget w2(&w); w2.setAttribute(Qt::WA_NativeWindow); w2.setAttribute(Qt::WA_DontCreateNativeAncestors); qDebug() << &w2 << w2.internalWinId(); w.show(); return app.exec(); }
Attachments
Issue Links
- resulted from
-
QTBUG-10809 QX11EmbedContainer/Widget doesn't work
- Closed