summaryrefslogtreecommitdiff
path: root/src/plugins/help/helpplugin.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2013-06-18 09:22:46 +0200
committerEike Ziller <eike.ziller@digia.com>2013-06-18 09:47:28 +0200
commit7a7efd3e2eb4022c6658724929cf6a068bc037a7 (patch)
tree3f85c5524300ac3435ae38ec6ebd237210d61e2b /src/plugins/help/helpplugin.cpp
parentc915b3247d200f5a11e442cfcc0c15a03788160b (diff)
downloadqt-creator-7a7efd3e2eb4022c6658724929cf6a068bc037a7.tar.gz
Fix path to qt creator documentation.
broke with the introduction of ICore::documentationPath in 60f7f00e4121fa15b66a95ebf01907957410bbe1 Change-Id: Ic63ded85bcbe27f64ad2a9436683472cc8bf01b8 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Diffstat (limited to 'src/plugins/help/helpplugin.cpp')
-rw-r--r--src/plugins/help/helpplugin.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp
index 65c1c21047..e77911d42d 100644
--- a/src/plugins/help/helpplugin.cpp
+++ b/src/plugins/help/helpplugin.cpp
@@ -384,8 +384,7 @@ void HelpPlugin::extensionsInitialized()
{
QStringList filesToRegister;
// we might need to register creators inbuild help
- filesToRegister.append(QDir::cleanPath(QCoreApplication::applicationDirPath()
- + ICore::documentationPath() + QLatin1String("/qtcreator.qch")));
+ filesToRegister.append(ICore::documentationPath() + QLatin1String("/qtcreator.qch"));
Core::HelpManager::instance()->registerDocumentation(filesToRegister);
}