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

@@ -181,7 +181,7 @@ public slots:
void gotoResult(int i)
{
QString needle = QString::number(i) + '^';
QString needle2 = "stdout:" + needle;
QString needle2 = QLatin1String("stdout:") + needle;
QTextCursor cursor(document());
do {
const QString line = cursor.block().text();