summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTaito Silvola <taito.silvola@digia.com>2012-04-20 07:49:38 (GMT)
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-04 20:32:33 (GMT)
commit7d94d08f91004e4c48904ca192c16c2c4cc129d0 (patch)
tree0de477ee9d38dc0b7c740086e4f90cc004ef0da7 /tools
parentb5e6ca71283f0f68b7ba6d9fe9663650751ad43e (diff)
downloadQt-7d94d08f91004e4c48904ca192c16c2c4cc129d0.zip
Qt-7d94d08f91004e4c48904ca192c16c2c4cc129d0.tar.gz
Qt-7d94d08f91004e4c48904ca192c16c2c4cc129d0.tar.bz2
Fixed window raise issue when handling remote commands
Fixed remote command hanling in Qt Assistant. Now Qt Assistant tries to raise and activate main help window after processing the remote command. Task-number: QTBUG-25407 Change-Id: I6408b9795bdf21bb920830608ba23bfda7d41604 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com> (cherry picked from qttools/883147fdaeeb2effbdb8a93a48f1ced49d56693e) Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/assistant/tools/assistant/remotecontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/assistant/tools/assistant/remotecontrol.cpp b/tools/assistant/tools/assistant/remotecontrol.cpp
index 74898c8..177d6ee 100644
--- a/tools/assistant/tools/assistant/remotecontrol.cpp
+++ b/tools/assistant/tools/assistant/remotecontrol.cpp
@@ -190,7 +190,7 @@ void RemoteControl::handleCommandString(const QString &cmdString)
else if (cmd == QLatin1String("unregister"))
handleUnregisterCommand(arg);
else
- return;
+ break;
++it;
}