diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-24 21:49:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-24 21:49:22 +0300 |
commit | 860d3e8e1bbe99b77763d533aebba9fde01e74c6 (patch) | |
tree | 7c87dfc372592507ce0a574aff115f209daefd08 /src/net/eathena | |
parent | 4749c8977e2e803692bd844b5400f8d72cbaf17f (diff) | |
download | plus-860d3e8e1bbe99b77763d533aebba9fde01e74c6.tar.gz plus-860d3e8e1bbe99b77763d533aebba9fde01e74c6.tar.bz2 plus-860d3e8e1bbe99b77763d533aebba9fde01e74c6.tar.xz plus-860d3e8e1bbe99b77763d533aebba9fde01e74c6.zip |
Add strong typed bool type IgnoreRecord.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 22db67357..76603734c 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -557,7 +557,8 @@ void ChatHandler::processChatContinue(std::string chatMsg, allow = chatWindow->resortChatLog(chatMsg, own, channel, - false, true); + IgnoreRecord_false, + true); } const size_t pos = chatMsg.find(" : ", 0); @@ -638,7 +639,9 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg) // TRANSLATORS: chat message strprintf(_("Message could not be sent, channel " "%s is not exists."), nick.c_str()), - ChatMsgType::BY_SERVER, false, false); + ChatMsgType::BY_SERVER, + IgnoreRecord_false, + false); if (!mSentWhispers.empty()) mSentWhispers.pop(); return; @@ -782,7 +785,9 @@ void ChatHandler::processJoinChannel(Net::MessageIn &msg) // TRANSLATORS: chat message strprintf(_("Can't open channel. Channel " "%s is not exists."), channel.c_str()), - ChatMsgType::BY_SERVER, false, false); + ChatMsgType::BY_SERVER, + IgnoreRecord_false, + false); break; case 1: @@ -873,7 +878,10 @@ void ChatHandler::processBeingChat(Net::MessageIn &msg) { allow = chatWindow->resortChatLog( removeColors(sender_name).append(" : ").append(chatMsg), - ChatMsgType::BY_OTHER, GENERAL_CHANNEL, false, true); + ChatMsgType::BY_OTHER, + GENERAL_CHANNEL, + IgnoreRecord_false, + true); } if (allow && being && player_relations.hasPermission(sender_name, |