~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/common/ircchannel.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2013-10-11 00:06:18 UTC
  • mfrom: (1.1.52)
  • Revision ID: package-import@ubuntu.com-20131011000618-46ncwnh3demhlw10
Tags: 0.9.1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    _initialized(false),
37
37
    _name(channelname),
38
38
    _topic(QString()),
 
39
    _encrypted(false),
39
40
    _network(network),
40
41
    _codecForEncoding(0),
41
42
    _codecForDecoding(0)
151
152
    SYNC(ARG(password))
152
153
}
153
154
 
 
155
void IrcChannel::setEncrypted(bool encrypted)
 
156
{
 
157
    _encrypted = encrypted;
 
158
    SYNC(ARG(encrypted))
 
159
    emit encryptedSet(encrypted);
 
160
}
 
161
 
154
162
 
155
163
void IrcChannel::joinIrcUsers(const QList<IrcUser *> &users, const QStringList &modes)
156
164
{