summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/assistant/remotecontrol/remotecontrol.cpp4
-rw-r--r--src/designer/src/designer/assistantclient.cpp4
-rw-r--r--src/linguist/linguist/mainwindow.cpp2
3 files changed, 5 insertions, 5 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);
diff --git a/src/designer/src/designer/assistantclient.cpp b/src/designer/src/designer/assistantclient.cpp
index cdde59952..f112f3e90 100644
--- a/src/designer/src/designer/assistantclient.cpp
+++ b/src/designer/src/designer/assistantclient.cpp
@@ -164,12 +164,12 @@ QString AssistantClient::documentUrl(const QString &module, int qtVersion)
QString AssistantClient::designerManualUrl(int qtVersion)
{
- return documentUrl(QStringLiteral("designer"), qtVersion);
+ return documentUrl(QStringLiteral("qtdesigner"), qtVersion);
}
QString AssistantClient::qtReferenceManualUrl(int qtVersion)
{
- return documentUrl(QStringLiteral("qt"), qtVersion);
+ return documentUrl(QStringLiteral("qtdoc"), qtVersion);
}
QT_END_NAMESPACE
diff --git a/src/linguist/linguist/mainwindow.cpp b/src/linguist/linguist/mainwindow.cpp
index ed45265ea..37abaccad 100644
--- a/src/linguist/linguist/mainwindow.cpp
+++ b/src/linguist/linguist/mainwindow.cpp
@@ -1341,7 +1341,7 @@ void MainWindow::manual()
str << QLatin1String("SetSource qthelp://org.qt-project.linguist.")
<< (QT_VERSION >> 16) << ((QT_VERSION >> 8) & 0xFF)
<< (QT_VERSION & 0xFF)
- << QLatin1String("/linguist/qtlinguist-index.html")
+ << QLatin1String("/qtlinguist/qtlinguist-index.html")
<< QLatin1Char('\n') << endl;
}