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 /demos/qtdemo | |
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 'demos/qtdemo')
-rw-r--r-- | demos/qtdemo/menumanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index 7168b57..c9ffecb 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -313,7 +313,7 @@ void MenuManager::showDocInAssistant(const QString &name) // Send command through remote control even if the process // was started to activate assistant and bring it to front: QTextStream str(&this->assistantProcess); - str << "SetSource " << url << QLatin1Char('\0') << endl; + str << "SetSource " << url << QLatin1Char('\n') << endl; } void MenuManager::launchExample(const QString &name) |