Bug #869 » 0001-Win32-fix-crash-on-Win32-when-closing-LC.patch
| src/core/debugmessagehandler.cpp | ||
|---|---|---|
|
if (!strcmp (message, "QPixmap::handle(): Pixmap is not an X11 class pixmap"))
|
||
|
return;
|
||
|
#endif
|
||
|
#if defined (Q_OS_WIN32)
|
||
|
if (!strcmp (message, "QObject::startTimer: QTimer can only be used with threads started with QThread"))
|
||
|
return;
|
||
|
#endif
|
||
|
static std::map<QtMsgType, QString> fileName;
|
||
|
fileName[QtDebugMsg] = "debug.log";
|
||
|
fileName[QtWarningMsg] = "warning.log";
|
||