aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help/HelpIndex.cpp
diff options
context:
space:
mode:
authorGravatar wodim2011-03-19 10:48:38 +0000
committerGravatar wodim2011-03-19 10:48:38 +0000
commit2c395195c1e412ee4a212801e7d2f9104ef494ef (patch)
tree68d85feb3c3b63d60d024cdcc85edff05b303b8b /src/modules/help/HelpIndex.cpp
parenttypo (diff)
downloadKVIrc-2c395195c1e412ee4a212801e7d2f9104ef494ef.tar.gz
KVIrc-2c395195c1e412ee4a212801e7d2f9104ef494ef.tar.bz2
KVIrc-2c395195c1e412ee4a212801e7d2f9104ef494ef.zip
fix for #1109
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5642 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help/HelpIndex.cpp')
-rw-r--r--src/modules/help/HelpIndex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/help/HelpIndex.cpp b/src/modules/help/HelpIndex.cpp
index 325d57bf6..b1dd47e34 100644
--- a/src/modules/help/HelpIndex.cpp
+++ b/src/modules/help/HelpIndex.cpp
@@ -159,7 +159,7 @@ void HelpIndex::setupDocumentList()
QStringList::ConstIterator it = lst.constBegin();
for ( ; it != lst.constEnd(); ++it )
{
- QString filename=QLatin1String("file:") + docPath + QLatin1String("/") + *it ;
+ QString filename=QLatin1String("file:///") + docPath + QLatin1String("/") + *it ;
docList.append(filename);
titleList.append(getDocumentTitle(filename));
}