diff options
Diffstat (limited to 'cppe/demo/IceE/chat/LogI.cpp')
-rw-r--r-- | cppe/demo/IceE/chat/LogI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/demo/IceE/chat/LogI.cpp b/cppe/demo/IceE/chat/LogI.cpp index dbed3ad13c9..7577334bb12 100644 --- a/cppe/demo/IceE/chat/LogI.cpp +++ b/cppe/demo/IceE/chat/LogI.cpp @@ -65,7 +65,7 @@ LogI::message(const string& msg) string line = msg + "\r\n"; if(_hwnd) { - post(line); + post(line); } else { @@ -79,7 +79,7 @@ LogI::setHandle(HWND hwnd) _hwnd = hwnd; if(_hwnd != 0 && !_buffer.empty()) { - post(_buffer); + post(_buffer); _buffer.clear(); } } |