diff options
Diffstat (limited to 'src/gui/widgets/tabs/chat')
-rw-r--r-- | src/gui/widgets/tabs/chat/battletab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/channeltab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/emulateguildtab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/gmtab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/guildtab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/partytab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/whispertab.cpp | 4 |
7 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/widgets/tabs/chat/battletab.cpp b/src/gui/widgets/tabs/chat/battletab.cpp index cedee0d90..70d9aa44d 100644 --- a/src/gui/widgets/tabs/chat/battletab.cpp +++ b/src/gui/widgets/tabs/chat/battletab.cpp @@ -34,7 +34,7 @@ BattleTab::BattleTab(const Widget2 *const widget) : // TRANSLATORS: battle chat tab name ChatTab(widget, _("Battle"), "", "#Battle", ChatTabType::BATTLE) { - setTabColors(Theme::BATTLE_CHAT_TAB); + setTabColors(ThemeColorId::BATTLE_CHAT_TAB); if (config.getBoolValue("showChatHistory")) loadFromLogFile("#Battle"); } diff --git a/src/gui/widgets/tabs/chat/channeltab.cpp b/src/gui/widgets/tabs/chat/channeltab.cpp index 7c4b43bf6..1c2c129b3 100644 --- a/src/gui/widgets/tabs/chat/channeltab.cpp +++ b/src/gui/widgets/tabs/chat/channeltab.cpp @@ -34,7 +34,7 @@ ChannelTab::ChannelTab(const Widget2 *const widget, const std::string &channel) : ChatTab(widget, channel, channel, channel, ChatTabType::CHANNEL) { - setTabColors(Theme::CHANNEL_CHAT_TAB); + setTabColors(ThemeColorId::CHANNEL_CHAT_TAB); } ChannelTab::~ChannelTab() diff --git a/src/gui/widgets/tabs/chat/emulateguildtab.cpp b/src/gui/widgets/tabs/chat/emulateguildtab.cpp index ccdf1bd43..e4d0d8dd1 100644 --- a/src/gui/widgets/tabs/chat/emulateguildtab.cpp +++ b/src/gui/widgets/tabs/chat/emulateguildtab.cpp @@ -38,7 +38,7 @@ EmulateGuildTab::EmulateGuildTab(const Widget2 *const widget) : // TRANSLATORS: guild chat tab name ChatTab(widget, _("Guild"), "", "#Guild", ChatTabType::GUILD) { - setTabColors(Theme::GUILD_CHAT_TAB); + setTabColors(ThemeColorId::GUILD_CHAT_TAB); mShowOnline = config.getBoolValue("showGuildOnline"); config.addListener("showGuildOnline", this); } diff --git a/src/gui/widgets/tabs/chat/gmtab.cpp b/src/gui/widgets/tabs/chat/gmtab.cpp index caa475309..a54798fc5 100644 --- a/src/gui/widgets/tabs/chat/gmtab.cpp +++ b/src/gui/widgets/tabs/chat/gmtab.cpp @@ -35,7 +35,7 @@ GmTab::GmTab(const Widget2 *const widget) : // TRANSLATORS: gb tab name ChatTab(widget, _("GM"), GM_CHANNEL, "#GM", ChatTabType::GM) { - setTabColors(Theme::GM_CHAT_TAB); + setTabColors(ThemeColorId::GM_CHAT_TAB); } GmTab::~GmTab() diff --git a/src/gui/widgets/tabs/chat/guildtab.cpp b/src/gui/widgets/tabs/chat/guildtab.cpp index 512104fd5..4d4d7d1d2 100644 --- a/src/gui/widgets/tabs/chat/guildtab.cpp +++ b/src/gui/widgets/tabs/chat/guildtab.cpp @@ -43,7 +43,7 @@ GuildTab::GuildTab(const Widget2 *const widget) : // TRANSLATORS: guild chat tab name ChatTab(widget, _("Guild"), "", "#Guild", ChatTabType::GUILD) { - setTabColors(Theme::GUILD_CHAT_TAB); + setTabColors(ThemeColorId::GUILD_CHAT_TAB); mShowOnline = config.getBoolValue("showGuildOnline"); config.addListener("showGuildOnline", this); } diff --git a/src/gui/widgets/tabs/chat/partytab.cpp b/src/gui/widgets/tabs/chat/partytab.cpp index 45f420703..489f03c94 100644 --- a/src/gui/widgets/tabs/chat/partytab.cpp +++ b/src/gui/widgets/tabs/chat/partytab.cpp @@ -44,7 +44,7 @@ PartyTab::PartyTab(const Widget2 *const widget) : // TRANSLATORS: party chat tab name ChatTab(widget, _("Party"), "", "#Party", ChatTabType::PARTY) { - setTabColors(Theme::PARTY_CHAT_TAB); + setTabColors(ThemeColorId::PARTY_CHAT_TAB); mShowOnline = config.getBoolValue("showPartyOnline"); config.addListener("showPartyOnline", this); } diff --git a/src/gui/widgets/tabs/chat/whispertab.cpp b/src/gui/widgets/tabs/chat/whispertab.cpp index 87de80724..8d1c920b3 100644 --- a/src/gui/widgets/tabs/chat/whispertab.cpp +++ b/src/gui/widgets/tabs/chat/whispertab.cpp @@ -121,10 +121,10 @@ void WhisperTab::getAutoCompleteCommands(StringVect& commands) const void WhisperTab::setWhisperTabColors() { - setTabColors(Theme::WHISPER_TAB); + setTabColors(ThemeColorId::WHISPER_TAB); } void WhisperTab::setWhisperTabOfflineColors() { - setTabColors(Theme::WHISPER_TAB_OFFLINE); + setTabColors(ThemeColorId::WHISPER_TAB_OFFLINE); } |