X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=7d5d24445e5ff23f8236363680622b10278698c4;hp=d5649730a1b516a2f07e1c0b974ea124c4c9672b;hb=712781ef33198acb7267e02ee6f8f9bfc8598d5a;hpb=29a45f620131394d4b80ad8c4a58b8acb359df76 diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index d5649730..7d5d2444 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -153,7 +153,7 @@ void CoreSessionEventProcessor::processIrcEventJoin(IrcEvent *e) { } } -void CoreSessionEventProcessor::processIrcEventKick(IrcEvent *e) { +void CoreSessionEventProcessor::lateProcessIrcEventKick(IrcEvent *e) { if(checkParamCount(e, 2)) { e->network()->updateNickFromMask(e->prefix()); IrcUser *victim = e->network()->ircUser(e->params().at(1)); @@ -270,7 +270,7 @@ void CoreSessionEventProcessor::processIrcEventMode(IrcEvent *e) { } } -void CoreSessionEventProcessor::processIrcEventNick(IrcEvent *e) { +void CoreSessionEventProcessor::lateProcessIrcEventNick(IrcEvent *e) { if(checkParamCount(e, 1)) { IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix()); if(!ircuser) { @@ -288,7 +288,7 @@ void CoreSessionEventProcessor::processIrcEventNick(IrcEvent *e) { } } -void CoreSessionEventProcessor::processIrcEventPart(IrcEvent *e) { +void CoreSessionEventProcessor::lateProcessIrcEventPart(IrcEvent *e) { if(checkParamCount(e, 1)) { IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix()); if(!ircuser) {