Browse Source

Fix compilation on Linux/Mac

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
b9a0adc311
  1. 4
      src/main.cpp

4
src/main.cpp

@ -121,13 +121,13 @@ public: @@ -121,13 +121,13 @@ public:
void sigintHandler(int) {
signal(SIGINT, 0);
qDebug("Catching SIGINT, exiting cleanly");
app->exit();
qApp->exit();
}
void sigtermHandler(int) {
signal(SIGTERM, 0);
qDebug("Catching SIGTERM, exiting cleanly");
app->exit();
qApp->exit();
}
void sigsegvHandler(int) {
signal(SIGABRT, 0);

Loading…
Cancel
Save