From 5fd12f26f35688b14d054a95e5ac17d2933f181d Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 4 Dec 2012 16:09:02 +0100 Subject: [PATCH] Qt Linguist: Fix help URL. Task-number: QTBUG-28373 Change-Id: I1c5929ffee32843867d2401a23386545f36b9bcc Reviewed-by: hjk Reviewed-by: Jerome Pasion --- src/linguist/linguist/mainwindow.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/linguist/linguist/mainwindow.cpp b/src/linguist/linguist/mainwindow.cpp index 20b616f..ed45265 100644 --- a/src/linguist/linguist/mainwindow.cpp +++ b/src/linguist/linguist/mainwindow.cpp @@ -1337,12 +1337,11 @@ void MainWindow::manual() return; } } - QTextStream str(m_assistantProcess); - str << QLatin1String("SetSource qthelp://com.trolltech.linguist.") + str << QLatin1String("SetSource qthelp://org.qt-project.linguist.") << (QT_VERSION >> 16) << ((QT_VERSION >> 8) & 0xFF) << (QT_VERSION & 0xFF) - << QLatin1String("/qdoc/linguist-manual.html") + << QLatin1String("/linguist/qtlinguist-index.html") << QLatin1Char('\n') << endl; } -- 2.7.4