summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/chat/whispertab.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-12 16:21:11 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-12 16:21:11 +0300
commit2e8e53fb5e3f2ba7d0d4f55b0c6705d12ec8efa9 (patch)
tree95eabbcc64c3420f3b40110ee84e21bebf9bd557 /src/gui/widgets/tabs/chat/whispertab.cpp
parent1d689e6492993a66935c7b36ff9827f6c170e166 (diff)
downloadmv-2e8e53fb5e3f2ba7d0d4f55b0c6705d12ec8efa9.tar.gz
mv-2e8e53fb5e3f2ba7d0d4f55b0c6705d12ec8efa9.tar.bz2
mv-2e8e53fb5e3f2ba7d0d4f55b0c6705d12ec8efa9.tar.xz
mv-2e8e53fb5e3f2ba7d0d4f55b0c6705d12ec8efa9.zip
Add log file name into chattab.
Diffstat (limited to 'src/gui/widgets/tabs/chat/whispertab.cpp')
-rw-r--r--src/gui/widgets/tabs/chat/whispertab.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gui/widgets/tabs/chat/whispertab.cpp b/src/gui/widgets/tabs/chat/whispertab.cpp
index 16b62a66c..fc68cb222 100644
--- a/src/gui/widgets/tabs/chat/whispertab.cpp
+++ b/src/gui/widgets/tabs/chat/whispertab.cpp
@@ -38,7 +38,7 @@
WhisperTab::WhisperTab(const Widget2 *const widget,
const std::string &nick) :
- ChatTab(widget, nick, "", ChatTabType::WHISPER),
+ ChatTab(widget, nick, "", nick, ChatTabType::WHISPER),
mNick(nick)
{
setWhisperTabColors();
@@ -110,12 +110,6 @@ bool WhisperTab::handleCommand(const std::string &restrict type,
return true;
}
-void WhisperTab::saveToLogFile(const std::string &msg) const
-{
- if (chatLogger)
- chatLogger->log(getNick(), msg);
-}
-
void WhisperTab::getAutoCompleteList(StringVect &names) const
{
names.push_back(mNick);