summaryrefslogtreecommitdiffstats
path: root/examples/assistant/remotecontrol/remotecontrol.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2012-12-18 14:41:12 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-18 15:27:41 +0100
commit5c8930fadd5c1867d36eb8a4b6e73ac8e270b5b5 (patch)
treec593777781cbbcc2c1329afb4268b4d438c14aa5 /examples/assistant/remotecontrol/remotecontrol.cpp
parent8cd750dbc2b742b76d4d501bfcef3a71f47abf64 (diff)
Fix help URLs in tools.
Task-number: QTBUG-28689 Change-Id: Ifa3eb5ed1ae3928671a85d3aaeb2ef37b196ee4a Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'examples/assistant/remotecontrol/remotecontrol.cpp')
-rw-r--r--examples/assistant/remotecontrol/remotecontrol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/assistant/remotecontrol/remotecontrol.cpp b/examples/assistant/remotecontrol/remotecontrol.cpp
index 2569829a5..018999373 100644
--- a/examples/assistant/remotecontrol/remotecontrol.cpp
+++ b/examples/assistant/remotecontrol/remotecontrol.cpp
@@ -59,10 +59,10 @@ RemoteControl::RemoteControl(QWidget *parent, Qt::WindowFlags flags)
this, SLOT(on_urlButton_clicked()));
QString rc;
- QTextStream(&rc) << QLatin1String("qthelp://com.trolltech.qt.")
+ QTextStream(&rc) << QLatin1String("qthelp://org.qt-project.qtdoc.")
<< (QT_VERSION >> 16) << ((QT_VERSION >> 8) & 0xFF)
<< (QT_VERSION & 0xFF)
- << QLatin1String("/qdoc/index.html");
+ << QLatin1String("/qtdoc/index.html");
ui.startUrlLineEdit->setText(rc);