summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJoe <rubberduckie3554@gmail.com>2021-07-07 00:26:03 -0400
committerJoe <rubberduckie3554@gmail.com>2021-07-07 00:26:20 -0400
commit478c3b3e0b19d0b9a97542a9b91ca5329fbd5425 (patch)
tree57b5281bbef0813d749d2ed4c47a955d6d6a4984 /src
parentTranslated using Weblate (Finnish) (diff)
downloadnheko-478c3b3e0b19d0b9a97542a9b91ca5329fbd5425.tar.xz
Fix Backtrace define error for Windows
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp

index 29e93d49..bb6f946b 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -40,6 +40,7 @@ QQmlDebuggingEnabler enabler; #endif +#if !defined(Q_OS_WINDOWS) #if HAVE_BACKTRACE_SYMBOLS_FD #include <csignal> #include <execinfo.h> @@ -92,6 +93,7 @@ registerSignalHandlers() std::signal(SIGABRT, &stacktraceHandler); } +#endif #else // No implementation for systems with no stacktrace support.