diff options
author | kh1 <qt-info@nokia.com> | 2010-08-04 14:02:44 (GMT) |
---|---|---|
committer | kh1 <qt-info@nokia.com> | 2010-08-04 14:04:56 (GMT) |
commit | 2838cfa7809e6b196a1ee1eb71df5894fc57dd6f (patch) | |
tree | e52e77b111b19531a4094e8e2c2caa9a17fda61c /demos/qtdemo | |
parent | ae1c9def5cb22d88cf10b2a23d06bc38da12725b (diff) | |
download | Qt-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 '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) |