From 90c7407c90fa0e9fed8026531663fd12746c193f Mon Sep 17 00:00:00 2001 From: heckflosse Date: Mon, 4 Jul 2016 19:25:59 +0200 Subject: [PATCH] Disable wrong warning for non Windows builds --- rtgui/main.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/main.cc b/rtgui/main.cc index 4a4511f34..cc64af257 100644 --- a/rtgui/main.cc +++ b/rtgui/main.cc @@ -264,7 +264,9 @@ int main(int argc, char **argv) if (argc > 1 || options.rtSettings.verbose) { // printing RT's version in all case, particularly useful for the 'verbose' mode, but also for the batch processing std::cout << "RawTherapee, version " << VERSION << std::endl; +#ifdef WIN32 std::cout << "WARNING: closing this window will close RawTherapee!" << std::endl << std::endl; +#endif if (argc > 1) { int ret = processLineParams( argc, argv);