X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmonoapplication.h;h=086bb473dc98281598413306906894a4f84318d0;hb=f9c4ee168a794add5261a7f1b6abb518f5987f8c;hp=59d3747d892bf05e463adf5038c06d843cd628cf;hpb=5c6804f291a63f978e328aeddcc8448e3443b45e;p=quassel.git diff --git a/src/qtui/monoapplication.h b/src/qtui/monoapplication.h index 59d3747d..086bb473 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 * @@ -26,15 +26,19 @@ class CoreApplicationInternal; class MonolithicApplication : public QtUiApplication { + Q_OBJECT +public: + MonolithicApplication(int &, char **); + ~MonolithicApplication(); - public: - MonolithicApplication(int &, char **); - ~MonolithicApplication(); + bool init(); - bool init(); +private slots: + void startInternalCore(); - private: - CoreApplicationInternal *_internal; +private: + CoreApplicationInternal *_internal; + bool _internalInitDone; }; #endif