diff options
author | kh1 <qt-info@nokia.com> | 2010-08-04 14:02:44 (GMT) |
---|---|---|
committer | Jesper Thomschutz <jesper.thomschutz@nokia.com> | 2010-08-05 09:37:41 (GMT) |
commit | 6e196f796059558fe3d0e60c2e504b980d80dc73 (patch) | |
tree | 54b6ccfdeac576cc230720eaaa9824c28a61c29f /tools | |
parent | 8f85d0e13245279fdb5a0dd0cf9c0c64615a6125 (diff) | |
download | Qt-6e196f796059558fe3d0e60c2e504b980d80dc73.zip Qt-6e196f796059558fe3d0e60c2e504b980d80dc73.tar.gz Qt-6e196f796059558fe3d0e60c2e504b980d80dc73.tar.bz2 |
Fix the remote command delimiter, this has cahnged at some point.
Task-number: QTBUG-12485 QTBUG-12651
Reviewed-by: ck
(cherry picked from commit 2838cfa7809e6b196a1ee1eb71df5894fc57dd6f)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/designer/src/designer/assistantclient.cpp | 2 | ||||
-rw-r--r-- | tools/linguist/linguist/mainwindow.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/designer/src/designer/assistantclient.cpp b/tools/designer/src/designer/assistantclient.cpp index e47817f..bddaf63 100644 --- a/tools/designer/src/designer/assistantclient.cpp +++ b/tools/designer/src/designer/assistantclient.cpp @@ -101,7 +101,7 @@ bool AssistantClient::sendCommand(const QString &cmd, QString *errorMessage) return false; } QTextStream str(m_process); - str << cmd << QLatin1Char('\0') << endl; + str << cmd << QLatin1Char('\n') << endl; return true; } diff --git a/tools/linguist/linguist/mainwindow.cpp b/tools/linguist/linguist/mainwindow.cpp index 1611699..163ef54 100644 --- a/tools/linguist/linguist/mainwindow.cpp +++ b/tools/linguist/linguist/mainwindow.cpp @@ -1347,7 +1347,7 @@ void MainWindow::manual() << (QT_VERSION >> 16) << ((QT_VERSION >> 8) & 0xFF) << (QT_VERSION & 0xFF) << QLatin1String("/qdoc/linguist-manual.html") - << QLatin1Char('\0') << endl; + << QLatin1Char('\n') << endl; } void MainWindow::about() |