summaryrefslogtreecommitdiffstats
path: root/src/htags.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-08 22:00:00 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-18 20:57:40 (GMT)
commit3204a2206aa617b41c6da5999c3b826057d274f3 (patch)
tree2dc4b6d3df48302889e3b868eaed9ea30d0b2b09 /src/htags.cpp
parent781c3ec1556b711c74fc0d6ebb343569eb1491ab (diff)
downloadDoxygen-3204a2206aa617b41c6da5999c3b826057d274f3.zip
Doxygen-3204a2206aa617b41c6da5999c3b826057d274f3.tar.gz
Doxygen-3204a2206aa617b41c6da5999c3b826057d274f3.tar.bz2
Refactoring: Replaced QFileInfo with FileInfo
- FileInfo is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
Diffstat (limited to 'src/htags.cpp')
-rw-r--r--src/htags.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htags.cpp b/src/htags.cpp
index 6b5e5fd..7be9e48 100644
--- a/src/htags.cpp
+++ b/src/htags.cpp
@@ -25,6 +25,7 @@
#include "message.h"
#include "config.h"
#include "portable.h"
+#include "fileinfo.h"
bool Htags::useHtags = FALSE;
@@ -111,7 +112,7 @@ bool Htags::execute(const QCString &htmldir)
bool Htags::loadFilemap(const QCString &htmlDir)
{
QCString fileMapName = htmlDir+"/HTML/FILEMAP";
- QFileInfo fi(fileMapName);
+ FileInfo fi(fileMapName.str());
/*
* Construct FILEMAP dictionary.
*