diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-16 16:15:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-16 16:15:34 +0300 |
commit | fe6a120ea38daaad39f6952a886c20269cfedca6 (patch) | |
tree | 4595d63a2ab9764873657182fbf2ab2b985474bf /src/gui/chatlog.h | |
parent | 6279b10249efa59b3161b014899465fe4bb08da4 (diff) | |
download | ManaVerse-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.gz ManaVerse-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.bz2 ManaVerse-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.xz ManaVerse-fe6a120ea38daaad39f6952a886c20269cfedca6.zip |
Move chatmsgtype into separate file.
Diffstat (limited to 'src/gui/chatlog.h')
-rw-r--r-- | src/gui/chatlog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/chatlog.h b/src/gui/chatlog.h index c39146ff2..25bcd10d5 100644 --- a/src/gui/chatlog.h +++ b/src/gui/chatlog.h @@ -23,7 +23,7 @@ #ifndef GUI_CHATLOG_H #define GUI_CHATLOG_H -#include "gui/windows/chatwindow.h" +#include "gui/chatmsgtype.h" #include <string> @@ -35,7 +35,7 @@ struct CHATLOG final CHATLOG() : nick(), text(), - own(BY_UNKNOWN) + own(ChatMsgType::BY_UNKNOWN) { } @@ -43,6 +43,6 @@ struct CHATLOG final std::string nick; std::string text; - Own own; + ChatMsgType::Type own; }; #endif // GUI_CHATLOG_H |