diff options
Diffstat (limited to 'src/gui/windows/helpwindow.cpp')
-rw-r--r-- | src/gui/windows/helpwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/helpwindow.cpp b/src/gui/windows/helpwindow.cpp index 62c341ac3..e1ba2de30 100644 --- a/src/gui/windows/helpwindow.cpp +++ b/src/gui/windows/helpwindow.cpp @@ -38,9 +38,9 @@ #include "gui/widgets/scrollarea.h" #include "utils/gettext.h" -#include "utils/files.h" #include "utils/paths.h" #include "utils/process.h" +#include "utils/virtfstools.h" #include "utils/translation/podict.h" #include "utils/translation/translationmanager.h" @@ -161,11 +161,11 @@ void HelpWindow::loadTags() helpPath = paths.getStringValue("tags"); StringVect filesVect; - Files::getFilesInDir(helpPath, filesVect, ".idx"); + VirtFs::getFilesInDir(helpPath, filesVect, ".idx"); FOR_EACH (StringVectCIter, itVect, filesVect) { StringVect lines; - Files::loadTextFile(*itVect, lines); + VirtFs::loadTextFile(*itVect, lines); FOR_EACH (StringVectCIter, it, lines) { const std::string &str = *it; |