Fix memory leak on icon tray by letting events pass the parent widget.

This commit is contained in:
codestation
2015-12-27 16:33:55 -04:30
parent c10bf4b177
commit 5f508fa47c
4 changed files with 7 additions and 0 deletions

View File

@@ -56,6 +56,10 @@ static void noDebugOutput(QtMsgType type, const char *message)
case QtFatalMsg:
fprintf(stderr, "Fatal: %s\n", message);
abort();
break;
case QtInfoMsg:
fprintf(stderr, "Info: %s\n", message);
break;
}
}