X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreusersettings.h;h=17a9b2f7a1e65f1d84c992afffd79d254adadf1c;hp=5759d721f91cdb94e28dc522b2b4555e4737420e;hb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;hpb=2704de43e8f98c030f013e686736f3e299b7d815 diff --git a/src/core/coreusersettings.h b/src/core/coreusersettings.h index 5759d721..17a9b2f7 100644 --- a/src/core/coreusersettings.h +++ b/src/core/coreusersettings.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2016 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 _COREUSERSETTINGS_H_ @@ -28,9 +28,9 @@ #include -class CoreUserSettings : public CoreSettings { - - public: +class CoreUserSettings : public CoreSettings +{ +public: CoreUserSettings(UserId user); Identity identity(IdentityId id); @@ -41,7 +41,7 @@ class CoreUserSettings : public CoreSettings { void setSessionState(const QVariant &data); QVariant sessionState(const QVariant &def = QVariant()); - private: +private: // this stuff should only be accessed by CoreSession! QVariantMap sessionData(); QVariant sessionValue(const QString &key, const QVariant &def = QVariant()); @@ -52,4 +52,5 @@ class CoreUserSettings : public CoreSettings { friend class CoreSession; }; + #endif