summaryrefslogtreecommitdiff
path: root/src/gui/chatwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r--src/gui/chatwindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/chatwindow.h b/src/gui/chatwindow.h
index 4f65ed44d..4d4b249e6 100644
--- a/src/gui/chatwindow.h
+++ b/src/gui/chatwindow.h
@@ -227,10 +227,10 @@ class ChatWindow : public Window,
void addWhisper(const std::string &nick, const std::string &mes,
const Own own = BY_OTHER);
- ChatTab *addWhisperTab(const std::string &nick,
- const bool switchTo = false);
+ WhisperTab *addWhisperTab(const std::string &nick,
+ const bool switchTo = false);
- ChatTab *getWhisperTab(const std::string &nick) const;
+ WhisperTab *getWhisperTab(const std::string &nick) const;
void removeAllWhispers();
@@ -332,7 +332,7 @@ class ChatWindow : public Window,
bool mTmpVisible;
- typedef std::map<const std::string, ChatTab*> TabMap;
+ typedef std::map<const std::string, WhisperTab*> TabMap;
/** Manage whisper tabs */
TabMap mWhispers;