X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fircchannel.h;h=693ed9c5f3c2f0a6d7aa28c4f4acec47533a2488;hb=2b44b945cf50e3dbfeabe4e5aee10db4b13f5a64;hp=b27ea90e04fbb1c270bb67414711cc1a2099db97;hpb=ac654fdeeece68d64561920479f064ad3c237e26;p=quassel.git diff --git a/src/common/ircchannel.h b/src/common/ircchannel.h index b27ea90e..693ed9c5 100644 --- a/src/common/ircchannel.h +++ b/src/common/ircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2014 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;