]> git.pld-linux.org Git - packages/kf5-kio.git/blame - kio_help-fallback-to-kde4-docs.patch
- updated to 5.115.0
[packages/kf5-kio.git] / kio_help-fallback-to-kde4-docs.patch
CommitLineData
a7f2b633
WF
1diff -up kio-5.98.0/src/kioworkers/help/kio_help.cpp.orig kio-5.98.0/src/kioworkers/help/kio_help.cpp
2--- kio-5.98.0/src/kioworkers/help/kio_help.cpp.orig
3+++ kio-5.98.0/src/kioworkers/help/kio_help.cpp
4@@ -35,7 +35,9 @@
83e66206
WF
5 QStringList search;
6
7 // assemble the local search paths
8- const QStringList localDoc = KDocTools::documentationDirs();
9+ QStringList localDoc = KDocTools::documentationDirs();
10+ QStringList fallbacklocalDoc = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("doc/kde/HTML"), QStandardPaths::LocateDirectory);
11+ localDoc.append(fallbacklocalDoc);
12
13 QStringList langs = KLocalizedString::languages();
14 langs.append(QStringLiteral("en"));
This page took 0.646282 seconds and 4 git commands to generate.