Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.7.2
-
2de60ba30f86a9dd338359f7269b62ca5d0a2c46
Description
Tool qmlviewer stores warning traces to e:\qml.log file, but doesn't forward the warnings to default message handler.
Fix:
@@ -90,11 +92,7 @@ void myMessageOutput(QtMsgType type, const char *msg) + if (systemMsgOutput) + systemMsgOutput(type, msg); + switch (type) { case QtFatalMsg: abort(); @@ -523,11 +526,7 @@ QDeclarativeViewer *openFile(const QString &fileName) int main(int argc, char ** argv) { -#if defined (Q_OS_SYMBIAN) - qInstallMsgHandler(myMessageOutput); -#else systemMsgOutput = qInstallMsgHandler(myMessageOutput); -#endif