From 8a74223726c8cf6c90bf59965c3a96036b682f5f Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Wed, 20 Nov 2013 14:13:26 +0000 Subject: [PATCH] Fix WIN32 build issue in main.cpp .. nostderr() not supported on Windows. --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index bfa32a696..9e805f449 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -185,7 +185,9 @@ main(int argc, char *argv[]) } // now redirect stderr +#ifndef WIN32 if (!debug) nostderr(home.absolutePath()); +#endif // install QT Translator to enable QT Dialogs translation // we may have restarted JUST to get this!