From 860d3e8e1bbe99b77763d533aebba9fde01e74c6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 24 May 2015 21:49:22 +0300 Subject: Add strong typed bool type IgnoreRecord. --- src/gui/widgets/tabs/chat/chattab.cpp | 11 ++++++++--- src/gui/widgets/tabs/chat/chattab.h | 3 ++- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets/tabs') diff --git a/src/gui/widgets/tabs/chat/chattab.cpp b/src/gui/widgets/tabs/chat/chattab.cpp index bd3759c65..072ab677e 100644 --- a/src/gui/widgets/tabs/chat/chattab.cpp +++ b/src/gui/widgets/tabs/chat/chattab.cpp @@ -106,8 +106,10 @@ ChatTab::~ChatTab() delete2(mScrollArea); } -void ChatTab::chatLog(std::string line, ChatMsgType::Type own, - const bool ignoreRecord, const bool tryRemoveColors) +void ChatTab::chatLog(std::string line, + ChatMsgType::Type own, + const IgnoreRecord ignoreRecord, + const bool tryRemoveColors) { // Trim whitespace trim(line); @@ -359,7 +361,10 @@ void ChatTab::chatLog(const std::string &nick, std::string msg) ? ChatMsgType::BY_PLAYER : ChatMsgType::BY_OTHER); if (byWho == ChatMsgType::BY_OTHER && config.getBoolValue("removeColors")) msg = removeColors(msg); - chatLog(std::string(nick).append(" : ").append(msg), byWho, false, false); + chatLog(std::string(nick).append(" : ").append(msg), + byWho, + IgnoreRecord_false, + false); } void ChatTab::chatInput(const std::string &message) diff --git a/src/gui/widgets/tabs/chat/chattab.h b/src/gui/widgets/tabs/chat/chattab.h index cc694a874..7af3920ef 100644 --- a/src/gui/widgets/tabs/chat/chattab.h +++ b/src/gui/widgets/tabs/chat/chattab.h @@ -25,6 +25,7 @@ #include "enums/gui/chatmsgtype.h" +#include "enums/simpletypes/ignorerecord.h" #include "enums/simpletypes/online.h" #include "gui/widgets/browserbox.h" @@ -79,7 +80,7 @@ class ChatTab notfinal : public Tab */ void chatLog(std::string line, ChatMsgType::Type own = ChatMsgType::BY_SERVER, - const bool ignoreRecord = false, + const IgnoreRecord ignoreRecord = IgnoreRecord_false, const bool tryRemoveColors = true); /** -- cgit v1.2.3-60-g2f50