Details
-
Bug
-
Resolution: Done
-
P2: Important
-
None
-
5.12.0, 5.13.0 Alpha 1
-
None
-
Window 7, 10; Qt 5.12.x; MinGW 7.3.0 64-bit; Debug build run in debugger
-
-
94d79ba3b5d61692e3d32962a7937068f62262df
Description
// Settings:
// - Qt 5.12.0.
// - MinGW 7.3.0 64-bit.
// - Debug with GDB option 'Stop when abort() is called'.
//
// Observation:
// Setting QTextEdit as QMainWindow central widget
// causes anomalous debugger break at QWidgetAnimator::abort()
// when window is shown and/or layout is recalculated.
// Behavior different than all earlier Qt versions.
#include <QApplication>
#include <QMainWindow>
#include <QTextEdit>
class MyWin : public QMainWindow
{ public: MyWin(); };
MyWin::MyWin() : QMainWindow()
{ setCentralWidget( new QTextEdit ); }int main( int argc, char *argv[] )
{ QApplication app( argc, argv ); MyWin W; W.show(); return app.exec(); }Attachments
Issue Links
- relates to
-
QTCREATORBUG-22266 Can't debug with Qt 5.12.2 on Windows 10
-
- Closed
-
-
QTCREATORBUG-22165 QML and openstreet maps
-
- Closed
-