diff -r 429c7ed3cc54 -r 1dc890c73e01 src/crashCatcher.h --- a/src/crashCatcher.h Sun Aug 30 03:52:03 2015 +0300 +++ b/src/crashCatcher.h Sun Aug 30 04:21:44 2015 +0300 @@ -19,8 +19,8 @@ #pragma once #include "main.h" -#ifdef __unix__ -void InitCrashCatcher(); -#else // ifdef __unix__ -# define InitCrashCatcher() -#endif // ifdef __unix__ +#ifdef Q_OS_UNIX +void initCrashCatcher(); +#else +void initCrashCatcher() {} +#endif