X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmonoapplication.h;h=4b51e9d845ed213255e3c5100363ece235bd883e;hb=777d91165d4548099d63f5ed216a2c457fee4029;hp=59d3747d892bf05e463adf5038c06d843cd628cf;hpb=5c6804f291a63f978e328aeddcc8448e3443b45e;p=quassel.git diff --git a/src/qtui/monoapplication.h b/src/qtui/monoapplication.h index 59d3747d..4b51e9d8 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-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,26 +15,28 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef MONOAPPLICATION_H_ -#define MONOAPPLICATION_H_ +#pragma once #include "qtuiapplication.h" class CoreApplicationInternal; -class MonolithicApplication : public QtUiApplication { - - public: +class MonolithicApplication : public QtUiApplication +{ + Q_OBJECT +public: MonolithicApplication(int &, char **); ~MonolithicApplication(); - bool init(); + bool init() override; + +private slots: + void startInternalCore(); - private: +private: CoreApplicationInternal *_internal; + bool _internalInitDone; }; - -#endif