diff --git a/src/main.cpp b/src/main.cpp index b1218ed16..7064589f7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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); diff --git a/src/src.pro b/src/src.pro index 940de76ec..b2ff5ae75 100644 --- a/src/src.pro +++ b/src/src.pro @@ -12,9 +12,9 @@ CONFIG += qt \ # Update this VERSION for each release os2 { - DEFINES += VERSION=\'\"v2.3.0rc5\"\' + DEFINES += VERSION=\'\"v2.3.0rc6\"\' } else { - DEFINES += VERSION=\\\"v2.3.0rc5\\\" + DEFINES += VERSION=\\\"v2.3.0rc6\\\" } DEFINES += VERSION_MAJOR=2 DEFINES += VERSION_MINOR=3