diff options
author | ck <qt-info@nokia.com> | 2009-11-11 13:35:17 (GMT) |
---|---|---|
committer | ck <qt-info@nokia.com> | 2009-11-11 14:20:18 (GMT) |
commit | 96592943598151ea3f64364eab3475904931ca16 (patch) | |
tree | 41488c1b2c49915c355212c2d5dd138e5dbe025a /examples/help/simpletextviewer | |
parent | 7af4abab649d1ea4f9c8289a58b9d479237bd815 (diff) | |
download | Qt-96592943598151ea3f64364eab3475904931ca16.zip Qt-96592943598151ea3f64364eab3475904931ca16.tar.gz Qt-96592943598151ea3f64364eab3475904931ca16.tar.bz2 |
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/simpletextviewer')
-rw-r--r-- | examples/help/simpletextviewer/assistant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/help/simpletextviewer/assistant.cpp b/examples/help/simpletextviewer/assistant.cpp index ab20f3e..2807365 100644 --- a/examples/help/simpletextviewer/assistant.cpp +++ b/examples/help/simpletextviewer/assistant.cpp @@ -73,7 +73,7 @@ void Assistant::showDocumentation(const QString &page) QByteArray ba("SetSource "); ba.append("qthelp://com.trolltech.examples.simpletextviewer/doc/"); - proc->write(ba + page.toLocal8Bit() + '\0'); + proc->write(ba + page.toLocal8Bit() + '\n'); } //! [1] |