diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-08 15:17:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-08 15:28:43 +0300 |
commit | c5a64309d9d792fc4ee3218f4db902e8a846a18a (patch) | |
tree | 08618c439436faa4f5265f4967a426b44fa79889 /src/gui/chatwindow.h | |
parent | 58b4f0bc45f9b866899db035664378969e583b01 (diff) | |
download | plus-c5a64309d9d792fc4ee3218f4db902e8a846a18a.tar.gz plus-c5a64309d9d792fc4ee3218f4db902e8a846a18a.tar.bz2 plus-c5a64309d9d792fc4ee3218f4db902e8a846a18a.tar.xz plus-c5a64309d9d792fc4ee3218f4db902e8a846a18a.zip |
Add new colors for whisper tabs.
New colors: WHISPER_TAB_HIGHLIGHTED, WHISPER_TAB_OFFLINE_HIGHLIGHTED,
WHISPER_TAB_SELECTED, WHISPER_TAB_OFFLINE_SELECTED
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r-- | src/gui/chatwindow.h | 8 |
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; |