X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuiapplication.h;h=6f4a7e26353dfc5d3e9a679b9430902a714c70aa;hp=747887548a455d4e379a9abaa3a6b581ee04a01b;hb=65aeb641b824b78cafbab1af7ae92a0b7069f44e;hpb=8c16bc6817aac177791686ac1a5ad8ee2d93410c diff --git a/src/qtui/qtuiapplication.h b/src/qtui/qtuiapplication.h index 74788754..6f4a7e26 100644 --- a/src/qtui/qtuiapplication.h +++ b/src/qtui/qtuiapplication.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * 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 QTUIAPPLICATION_H_ @@ -35,29 +35,32 @@ class QtUi; #ifdef HAVE_KDE -class QtUiApplication : public KApplication, public Quassel { +class QtUiApplication : public KApplication, public Quassel +{ #else -class QtUiApplication : public QApplication, public Quassel { +class QtUiApplication : public QApplication, public Quassel +{ #endif - Q_OBJECT + Q_OBJECT public: - QtUiApplication(int &, char **); - ~QtUiApplication(); - virtual bool init(); + QtUiApplication(int &, char **); + ~QtUiApplication(); + virtual bool init(); - void resumeSessionIfPossible(); - virtual void commitData(QSessionManager &manager); - virtual void saveState(QSessionManager &manager); + void resumeSessionIfPossible(); + virtual void commitData(QSessionManager &manager); + virtual void saveState(QSessionManager &manager); - inline bool isAboutToQuit() const { return _aboutToQuit; } + inline bool isAboutToQuit() const { return _aboutToQuit; } protected: - virtual void quit(); + virtual void quit(); private: - bool _aboutToQuit; + bool _aboutToQuit; }; + #endif