summaryrefslogtreecommitdiff
path: root/src/gui/chatwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-20 16:38:15 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-20 16:38:15 +0300
commit747dc30f256606e28fd932a9626da7c328114036 (patch)
tree1b3e7e70ba439d14d4936660d44c95c27816a11b /src/gui/chatwindow.h
parentcef2952156ab09371ed04beec00d0f1e8615ada9 (diff)
downloadplus-747dc30f256606e28fd932a9626da7c328114036.tar.gz
plus-747dc30f256606e28fd932a9626da7c328114036.tar.bz2
plus-747dc30f256606e28fd932a9626da7c328114036.tar.xz
plus-747dc30f256606e28fd932a9626da7c328114036.zip
fix style in gui directory.
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r--src/gui/chatwindow.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/chatwindow.h b/src/gui/chatwindow.h
index f8d9ae7da..2961d7de4 100644
--- a/src/gui/chatwindow.h
+++ b/src/gui/chatwindow.h
@@ -70,6 +70,15 @@ enum Own
/** One item in the chat log */
struct CHATLOG final
{
+ CHATLOG() :
+ nick(),
+ text(),
+ own(BY_UNKNOWN)
+ {
+ }
+
+ A_DELETE_COPY(CHATLOG)
+
std::string nick;
std::string text;
Own own;