Changeset - 164704c8aa6c
[Not reviewed]
0 1 0
HanzZ - 14 years ago 2011-05-20 14:36:12
hanzz.k@gmail.com
handle irc quit
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
backends/libircclient-qt/session.cpp
Show inline comments
 
@@ -104,12 +104,13 @@ void MyIrcBuffer::on_parted(const QString& origin, const QString& message) {
 
	np->handleParticipantChanged(user, nickname, receiver().toStdString(), flags, Swift::StatusShow::None, message.toStdString());
 
}
 

	
 
void MyIrcBuffer::on_quit(const QString& origin, const QString& message)
 
{
 
    qDebug() << "quit:" << receiver() << origin << message;
 
	on_parted(origin, message);
 
}
 

	
 
void MyIrcBuffer::on_nickChanged(const QString& origin, const QString& nick) {
 
	qDebug() << "nick changed:" << receiver() << origin << nick;
 
	std::string nickname = origin.toStdString();
 
	int flags = p->m_modes[receiver().toStdString() + nickname];
0 comments (0 inline, 0 general)