mirror of https://github.com/odrling/Aegisub
Use an std::string for now when printing messages.
Originally committed to SVN as r4467.
This commit is contained in:
parent
3516b4ce74
commit
9a3e1c58f0
|
@ -119,7 +119,7 @@ void LogWindow::EmitLog::Write(agi::log::SinkMessage *sm) {
|
||||||
sm->file,
|
sm->file,
|
||||||
sm->func,
|
sm->func,
|
||||||
sm->line,
|
sm->line,
|
||||||
sm->message);
|
std::string(sm->message, sm->len));
|
||||||
#endif
|
#endif
|
||||||
text_ctrl->AppendText(log);
|
text_ctrl->AppendText(log);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue