diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-08 01:11:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-08 01:11:07 +0300 |
commit | 577b75a14fa04b0d78281257ee7f5e3c42be3b7e (patch) | |
tree | 2028a97a20d11b6cef13cee0ab29d0b1f5f471dd /src/gui/theme.cpp | |
parent | 4f3e6ddeae45b7b04b191533e8f6c456fbc207d8 (diff) | |
download | plus-577b75a14fa04b0d78281257ee7f5e3c42be3b7e.tar.gz plus-577b75a14fa04b0d78281257ee7f5e3c42be3b7e.tar.bz2 plus-577b75a14fa04b0d78281257ee7f5e3c42be3b7e.tar.xz plus-577b75a14fa04b0d78281257ee7f5e3c42be3b7e.zip |
Rename colors WHISPER and WHISPER_OFFLINE to WHISPER_TAB and WHISPER_TAB_OFFLINE.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index fd6ccc23d..ccb033e78 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -168,8 +168,8 @@ Theme::Theme(): mColors[CHAT].ch = 'C'; mColors[GM].ch = 'G'; mColors[PLAYER].ch = 'Y'; - mColors[WHISPER].ch = 'W'; - mColors[WHISPER_OFFLINE].ch = 'w'; + mColors[WHISPER_TAB].ch = 'W'; + mColors[WHISPER_TAB_OFFLINE].ch = 'w'; mColors[IS].ch = 'I'; mColors[PARTY_CHAT_TAB].ch = 'P'; mColors[GUILD_CHAT_TAB].ch = 'U'; @@ -180,8 +180,8 @@ Theme::Theme(): mCharColors['C'] = CHAT; mCharColors['G'] = GM; mCharColors['Y'] = PLAYER; - mCharColors['W'] = WHISPER; - mCharColors['w'] = WHISPER_OFFLINE; + mCharColors['W'] = WHISPER_TAB; + mCharColors['w'] = WHISPER_TAB_OFFLINE; mCharColors['I'] = IS; mCharColors['P'] = PARTY_CHAT_TAB; mCharColors['U'] = GUILD_CHAT_TAB; @@ -707,8 +707,8 @@ static int readColorType(const std::string &type) "CHAT", "GM", "PLAYER", - "WHISPER", - "WHISPER_OFFLINE", + "WHISPER_TAB", + "WHISPER_TAB_OFFLINE", "IS", "SERVER", "LOGGER", |