Details
-
Bug
-
Status: Closed
-
Not Evaluated
-
Resolution: Duplicate
-
4.8.0
-
None
-
Mac OS X Lion
Description
Issue can be reproduced with this example in release mode, debug mode seems to work.
#include <QMessageBox> #include <QApplication> #include <QWindowsStyle> int main(int argc, char ** argv) { QApplication app(argc, argv); app.setStyle(new QWindowsStyle); QString myText; const bool makeQtCrash = true; if (makeQtCrash) myText = "Audio will be muted and\n\nall control points reset."; else myText = "Audio will be muted and all control points reset."; (void) QMessageBox::warning(NULL, "Scribble", myText, QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel); return 0; }