X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmonoapplication.h;h=de7963ec4e162bac7ef97e06955ab6600d7396e0;hp=405034240590b6dd3170f3505f3b3d0a3a761b75;hb=328b48e6fbd78d6158eb55296c0843fc5a41bcfa;hpb=f4ae0007ac4524612ae73a778ca491659cf22393 diff --git a/src/qtui/monoapplication.h b/src/qtui/monoapplication.h index 40503424..de7963ec 100644 --- a/src/qtui/monoapplication.h +++ b/src/qtui/monoapplication.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -27,16 +27,20 @@ class ClientSyncer; class CoreApplicationInternal; class MonolithicApplication : public QtUiApplication { + Q_OBJECT public: MonolithicApplication(int &, char **); ~MonolithicApplication(); bool init(); - bool startInternalCore(); - void connectClientSyncer(ClientSyncer *syncer); + +private slots: + void newClientSyncer(ClientSyncer *syncer); + void startInternalCore(ClientSyncer *syncer); private: CoreApplicationInternal *_internal; + bool _internalInitDone; }; #endif