X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircchannel.h;h=713bd3f409de4403e08bb986245bb175a2372a33;hp=d9fe9e92591dcf0053cc056f1c32f8aba2eb2508;hb=695758015a80eb8c158a9ac4c0f1c0b547e70df3;hpb=9d54503555534a2c554f09a33df6afa33d6308ec diff --git a/src/common/ircchannel.h b/src/common/ircchannel.h index d9fe9e92..713bd3f4 100644 --- a/src/common/ircchannel.h +++ b/src/common/ircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,13 +37,13 @@ class IrcChannel : public SyncableObject SYNCABLE_OBJECT Q_OBJECT - Q_PROPERTY(QString name READ name STORED false) - Q_PROPERTY(QString topic READ topic WRITE setTopic STORED false) - Q_PROPERTY(QString password READ password WRITE setPassword STORED false) - Q_PROPERTY(bool encrypted READ encrypted WRITE setEncrypted STORED false) + Q_PROPERTY(QString name READ name) + Q_PROPERTY(QString topic READ topic WRITE setTopic) + Q_PROPERTY(QString password READ password WRITE setPassword) + Q_PROPERTY(bool encrypted READ encrypted WRITE setEncrypted) public : - IrcChannel(const QString &channelname, Network *network); + IrcChannel(const QString &channelname, Network *network); ~IrcChannel(); bool isKnownUser(IrcUser *ircuser) const;