X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircuser.h;h=a6d4f26f585696462cf0b3905c16ef5acb2cb8d7;hp=1ed1c85daf36b1e4bb9f38110406c5cb641cfa34;hb=69952553cf2f5248a0c7e964d6d5844065d26612;hpb=a7f5d6a23f7214b11f6db85346a67fd7d02767da diff --git a/src/common/ircuser.h b/src/common/ircuser.h index 1ed1c85d..a6d4f26f 100644 --- a/src/common/ircuser.h +++ b/src/common/ircuser.h @@ -32,7 +32,7 @@ class IrcChannel; class IrcUser : public QObject { Q_OBJECT - + Q_PROPERTY(QString user READ user WRITE setUser STORED false) Q_PROPERTY(QString host READ host WRITE setHost STORED false) Q_PROPERTY(QString nick READ nick WRITE setNick STORED false) @@ -40,7 +40,7 @@ class IrcUser : public QObject { Q_PROPERTY(QStringList channels READ channels STORED false) // Q_PROPERTY(QStringList usermodes READ usermodes WRITE setUsermodes) - + public: IrcUser(const QString &hostmask, NetworkInfo *networkInfo); virtual ~IrcUser(); @@ -55,13 +55,13 @@ public: QString userModes() const; QStringList channels() const; - -public slots: + +public slots: void setUser(const QString &user); void setHost(const QString &host); void setNick(const QString &nick); void updateHostmask(const QString &mask); - + void setUserModes(const QString &modes); void joinChannel(const QString &channel); @@ -72,7 +72,7 @@ public slots: // init seters void initSetChannels(const QStringList channels); - + void setInitialized(); signals: