X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=91c417178c43091bd86458079ef23f18f7a77e2f;hb=6e7b4039cde65c37f711c8c4c0b0b405aa9054e1;hp=f6212d74fde8c8d1d3dbf81831ef5c41722549d0;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index f6212d74..91c41717 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "coreapplication.h" @@ -55,6 +55,11 @@ bool CoreApplicationInternal::init() Core::instance(); // create and init the core _coreCreated = true; + Quassel::registerReloadHandler([]() { + // Currently, only reloading SSL certificates is supported + return Core::reloadCerts(); + }); + if (!Quassel::isOptionSet("norestore")) Core::restoreState(); @@ -65,13 +70,13 @@ bool CoreApplicationInternal::init() /*****************************************************************************/ CoreApplication::CoreApplication(int &argc, char **argv) - : QCoreApplication(argc, argv), Quassel() + : QCoreApplication(argc, argv) { #ifdef Q_OS_MAC - disableCrashhandler(); + Quassel::disableCrashHandler(); #endif /* Q_OS_MAC */ - setRunMode(Quassel::CoreOnly); + Quassel::setRunMode(Quassel::CoreOnly); _internal = new CoreApplicationInternal(); } @@ -79,13 +84,18 @@ CoreApplication::CoreApplication(int &argc, char **argv) CoreApplication::~CoreApplication() { delete _internal; + Quassel::destroy(); } bool CoreApplication::init() { if (Quassel::init() && _internal->init()) { +#if QT_VERSION < 0x050000 qInstallMsgHandler(Logger::logMessage); +#else + qInstallMessageHandler(Logger::logMessage); +#endif return true; } return false;