summaryrefslogtreecommitdiff
path: root/examples/help/remotecontrol/remotecontrol.cpp
diff options
context:
space:
mode:
authorck <qt-info@nokia.com>2009-11-11 14:35:17 +0100
committerck <qt-info@nokia.com>2009-11-11 15:20:18 +0100
commit96592943598151ea3f64364eab3475904931ca16 (patch)
tree41488c1b2c49915c355212c2d5dd138e5dbe025a /examples/help/remotecontrol/remotecontrol.cpp
parent7af4abab649d1ea4f9c8289a58b9d479237bd815 (diff)
downloadqt4-tools-96592943598151ea3f64364eab3475904931ca16.tar.gz
Assistant: Update documentation for remote commands.
- Assistant understands a newline character as well as '\0' to mark the end of a remote command. Since the former is considerably less complicated to do and to explain, the documentation now uses that approach. - The related examples have been updated accordingly. - The qdoc file now uses the encoding it promises in the header. Reviewed-by: kh1 Reviewed-by: David Boddie
Diffstat (limited to 'examples/help/remotecontrol/remotecontrol.cpp')
-rw-r--r--examples/help/remotecontrol/remotecontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/help/remotecontrol/remotecontrol.cpp b/examples/help/remotecontrol/remotecontrol.cpp
index adb92d097c..9dc166e99e 100644
--- a/examples/help/remotecontrol/remotecontrol.cpp
+++ b/examples/help/remotecontrol/remotecontrol.cpp
@@ -123,7 +123,7 @@ void RemoteControl::sendCommand(const QString &cmd)
{
if (process->state() != QProcess::Running)
return;
- process->write(cmd.toLocal8Bit() + '\0');
+ process->write(cmd.toLocal8Bit() + '\n');
}
void RemoteControl::on_indexButton_clicked()