summaryrefslogtreecommitdiffstats
path: root/tools/designer
diff options
context:
space:
mode:
authorkh1 <qt-info@nokia.com>2010-08-04 14:02:44 (GMT)
committerkh1 <qt-info@nokia.com>2010-08-04 14:04:56 (GMT)
commit2838cfa7809e6b196a1ee1eb71df5894fc57dd6f (patch)
treee52e77b111b19531a4094e8e2c2caa9a17fda61c /tools/designer
parentae1c9def5cb22d88cf10b2a23d06bc38da12725b (diff)
downloadQt-2838cfa7809e6b196a1ee1eb71df5894fc57dd6f.zip
Qt-2838cfa7809e6b196a1ee1eb71df5894fc57dd6f.tar.gz
Qt-2838cfa7809e6b196a1ee1eb71df5894fc57dd6f.tar.bz2
Fix the remote command delimiter, this has cahnged at some point.
Task-number: QTBUG-12485 QTBUG-12651 Reviewed-by: ck
Diffstat (limited to 'tools/designer')
-rw-r--r--tools/designer/src/designer/assistantclient.cpp2
1 files changed, 1 insertions, 1 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;
}