diff options
author | madmaxoft <github@xoft.cz> | 2014-03-31 13:28:38 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-31 13:28:38 +0200 |
commit | 43844fc0f04ffd326af4ebc9e46ec220e27d1309 (patch) | |
tree | c6493a9b9ae837b0e69c314637b20654af3ff943 /src/CompositeChat.cpp | |
parent | Fixed a few Clang warnings in BlockHandlers. (diff) | |
download | cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar.gz cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar.bz2 cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar.lz cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar.xz cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.tar.zst cuberite-43844fc0f04ffd326af4ebc9e46ec220e27d1309.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CompositeChat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CompositeChat.cpp b/src/CompositeChat.cpp index a917ee70f..94f8a5901 100644 --- a/src/CompositeChat.cpp +++ b/src/CompositeChat.cpp @@ -112,8 +112,8 @@ cCompositeChat::cCompositeChat(void) : -cCompositeChat::cCompositeChat(const AString & a_ParseText) : - m_MessageType(mtCustom) +cCompositeChat::cCompositeChat(const AString & a_ParseText, eMessageType a_MessageType) : + m_MessageType(a_MessageType) { ParseText(a_ParseText); } |