Compile fix MSVC2010.

This commit is contained in:
Friedemann Kleint
2011-05-03 16:11:55 +02:00
parent 0e2ad833c1
commit 1c4965fcf7

View File

@@ -303,7 +303,7 @@ void CodaRunControl::handleModuleLoadSuspended(const CodaEvent &event)
void CodaRunControl::handleLogging(const CodaEvent &event)
{
const CodaLoggingWriteEvent &me = static_cast<const CodaLoggingWriteEvent &>(event);
appendMessage(me.message() + '\n', Utils::StdOutFormat);
appendMessage(QString::fromLatin1(QByteArray(me.message() + '\n')), Utils::StdOutFormat);
}
void CodaRunControl::handleAddListener(const CodaCommandResult &result)