summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 51debca..f8623ef 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -20,8 +20,7 @@
#include "doxygen.h"
#include "message.h"
#include "debug.h"
-
-#include <qfileinfo.h>
+#include "fileinfo.h"
QCString PlantumlManager::writePlantUMLSource(const QCString &outDirArg,const QCString &fileName,const QCString &content,OutputFormat format)
{
@@ -128,7 +127,7 @@ PlantumlManager &PlantumlManager::instance()
PlantumlManager::PlantumlManager()
{
QCString outputFilename = Config_getString(OUTPUT_DIRECTORY) + "/" + CACHE_FILENAME;
- QFileInfo fi(outputFilename);
+ FileInfo fi(outputFilename.str());
if (fi.exists())
{
m_cachedPlantumlAllContent = fileToString(outputFilename);