X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=25dd6851392bc0899cdcac145ff7ec8447fc96fd;hp=9b48adb92193d6b505746d3980c42a438f0fbcaf;hb=092e6b212637ffbf68800584b7c1f32d1931b602;hpb=1cb02004ee5973b89368bd84f234d4652794690d diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index 9b48adb9..25dd6851 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -55,6 +55,12 @@ bool CoreApplicationInternal::init() Core::instance(); // create and init the core _coreCreated = true; + Quassel::registerReloadHandler([]() { + // Currently, only reloading SSL certificates and the sysident cache is supported + Core::cacheSysIdent(); + return Core::reloadCerts(); + }); + if (!Quassel::isOptionSet("norestore")) Core::restoreState(); @@ -65,13 +71,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,6 +85,7 @@ CoreApplication::CoreApplication(int &argc, char **argv) CoreApplication::~CoreApplication() { delete _internal; + Quassel::destroy(); }