Use an std::string for now when printing messages.

Originally committed to SVN as r4467.
This commit is contained in:
Amar Takhar 2010-06-09 02:06:37 +00:00
parent 3516b4ce74
commit 9a3e1c58f0
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ void LogWindow::EmitLog::Write(agi::log::SinkMessage *sm) {
sm->file,
sm->func,
sm->line,
sm->message);
std::string(sm->message, sm->len));
#endif
text_ctrl->AppendText(log);
}