summaryrefslogtreecommitdiff
path: root/src/gui/chatlog.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-16 16:15:34 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-16 16:15:34 +0300
commitfe6a120ea38daaad39f6952a886c20269cfedca6 (patch)
tree4595d63a2ab9764873657182fbf2ab2b985474bf /src/gui/chatlog.h
parent6279b10249efa59b3161b014899465fe4bb08da4 (diff)
downloadplus-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.gz
plus-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.bz2
plus-fe6a120ea38daaad39f6952a886c20269cfedca6.tar.xz
plus-fe6a120ea38daaad39f6952a886c20269cfedca6.zip
Move chatmsgtype into separate file.
Diffstat (limited to 'src/gui/chatlog.h')
-rw-r--r--src/gui/chatlog.h6
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