| 47 | static MainWindow* mainWindow = 0; |
| 48 | |
| 49 | void customMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) |
| 50 | { |
| 51 | if (mainWindow) |
| 52 | mainWindow->logMessage(type, context, msg); |
| 53 | } |
| 54 | |
| 55 | int main(int argc, char *argv[]) |
| 56 | { |
nothing calls this directly
no test coverage detected