diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-15 12:59:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-15 12:59:29 +0300 |
commit | ab92ecc43d1b4d62e2ef3ac95c337dcee5f5fcc6 (patch) | |
tree | 1fc12b7dbe75471b4262483c36c13cc89f45facf /src/gui/widgets/tabs/guildchattab.h | |
parent | 324a3df386950a6f262f2382caa33177f085c03f (diff) | |
download | plus-ab92ecc43d1b4d62e2ef3ac95c337dcee5f5fcc6.tar.gz plus-ab92ecc43d1b4d62e2ef3ac95c337dcee5f5fcc6.tar.bz2 plus-ab92ecc43d1b4d62e2ef3ac95c337dcee5f5fcc6.tar.xz plus-ab92ecc43d1b4d62e2ef3ac95c337dcee5f5fcc6.zip |
Move chat tab types into separate file.
Diffstat (limited to 'src/gui/widgets/tabs/guildchattab.h')
-rw-r--r-- | src/gui/widgets/tabs/guildchattab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/tabs/guildchattab.h b/src/gui/widgets/tabs/guildchattab.h index cfcf901ca..41c06636c 100644 --- a/src/gui/widgets/tabs/guildchattab.h +++ b/src/gui/widgets/tabs/guildchattab.h @@ -24,6 +24,7 @@ #define GUI_WIDGETS_TABS_GUILDCHATTAB_H #include "gui/widgets/tabs/chattab.h" +#include "gui/widgets/tabs/chattabtype.h" /** * A tab for a guild chat channel. @@ -44,7 +45,7 @@ class GuildChatTab final : public ChatTab, void saveToLogFile(const std::string &msg) const override final; int getType() const override A_WARN_UNUSED - { return ChatTab::TAB_GUILD; } + { return ChatTabType::GUILD; } void playNewMessageSound() const override final; |