debugger: some encoding correctness

This commit is contained in:
hjk
2009-05-29 10:35:04 +02:00
parent b390e56d67
commit 957a8f3479
8 changed files with 19 additions and 12 deletions

View File

@@ -653,7 +653,7 @@ void DebuggerManager::showStatusMessage(const QString &msg, int timeout)
if (Debugger::Constants::Internal::debug)
qDebug() << "STATUS MSG: " << msg;
showDebuggerOutput("status:", msg);
m_statusLabel->setText(" " + msg);
m_statusLabel->setText(QLatin1String(" ") + msg);
if (timeout > 0) {
m_statusTimer->setSingleShot(true);
m_statusTimer->start(timeout);