X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmonoapplication.cpp;h=5eb3a5cbb36db44b5b318e15b97fbaefc6cffb59;hp=a0ddbc0c9b5079844499587ea050dedd30216e2b;hb=46888b395628f1023916a571762c07e72bc7f73c;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b diff --git a/src/qtui/monoapplication.cpp b/src/qtui/monoapplication.cpp index a0ddbc0c..5eb3a5cb 100644 --- a/src/qtui/monoapplication.cpp +++ b/src/qtui/monoapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -73,3 +73,13 @@ void MonolithicApplication::startInternalCore() connect(connection, SIGNAL(connectToInternalCore(InternalPeer*)), core, SLOT(setupInternalClientSession(InternalPeer*))); connect(core, SIGNAL(sessionState(Protocol::SessionState)), connection, SLOT(internalSessionStateReceived(Protocol::SessionState))); } + + +bool MonolithicApplication::reloadConfig() +{ + if (_internal) { + return _internal->reloadConfig(); + } else { + return false; + } +}