summaryrefslogtreecommitdiffstats
path: root/demos/qtdemo
diff options
context:
space:
mode:
authorkh1 <qt-info@nokia.com>2010-08-04 16:02:44 +0200
committerkh1 <qt-info@nokia.com>2010-08-04 16:04:56 +0200
commit2838cfa7809e6b196a1ee1eb71df5894fc57dd6f (patch)
treee52e77b111b19531a4094e8e2c2caa9a17fda61c /demos/qtdemo
parentae1c9def5cb22d88cf10b2a23d06bc38da12725b (diff)
Fix the remote command delimiter, this has cahnged at some point.
Task-number: QTBUG-12485 QTBUG-12651 Reviewed-by: ck
Diffstat (limited to 'demos/qtdemo')
-rw-r--r--demos/qtdemo/menumanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp
index 7168b57f82..c9ffecba64 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)