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/whispertab.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/whispertab.h')
-rw-r--r-- | src/gui/widgets/tabs/whispertab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/tabs/whispertab.h b/src/gui/widgets/tabs/whispertab.h index 84b55ae58..8a315a7c3 100644 --- a/src/gui/widgets/tabs/whispertab.h +++ b/src/gui/widgets/tabs/whispertab.h @@ -24,6 +24,7 @@ #define GUI_WIDGETS_TABS_WHISPERTAB_H #include "gui/widgets/tabs/chattab.h" +#include "gui/widgets/tabs/chattabtype.h" /** * A tab for whispers from a single player. @@ -40,7 +41,7 @@ class WhisperTab final : public ChatTab const std::string &restrict args) override final; int getType() const override final A_WARN_UNUSED - { return ChatTab::TAB_WHISPER; } + { return ChatTabType::WHISPER; } void saveToLogFile(const std::string &msg) const override final; |