X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmonoapplication.cpp;fp=src%2Fqtui%2Fmonoapplication.cpp;h=34890edc5bf1ed91720e504c9770c64bfe9ffb2d;hp=128ab979c07b23d289f0113c7ca396b6df4a7c49;hb=c015fbf8afaf64fbb5a8e2122e2a1ecf0325b1a1;hpb=893f0c21b72d7e4aedde092887073c590155b6d9 diff --git a/src/qtui/monoapplication.cpp b/src/qtui/monoapplication.cpp index 128ab979..34890edc 100644 --- a/src/qtui/monoapplication.cpp +++ b/src/qtui/monoapplication.cpp @@ -23,6 +23,7 @@ #include "client.h" #include "core.h" #include "internalpeer.h" +#include "logmessage.h" #include "qtui.h" class InternalPeer; @@ -30,10 +31,6 @@ class InternalPeer; MonolithicApplication::MonolithicApplication(int &argc, char **argv) : QtUiApplication(argc, argv) { -#if defined(HAVE_KDE4) || defined(Q_OS_MAC) - Quassel::disableCrashHandler(); -#endif /* HAVE_KDE4 || Q_OS_MAC */ - Quassel::setRunMode(Quassel::Monolithic); } @@ -56,6 +53,7 @@ void MonolithicApplication::init() Quassel::QuitHandler MonolithicApplication::quitHandler() { return [this]() { + quInfo() << "Client shutting down..."; connect(_client.get(), SIGNAL(destroyed()), this, SLOT(onClientDestroyed())); _client.release()->deleteLater(); };