summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-09-24 17:38:36 (GMT)
committerGitHub <noreply@github.com>2016-09-24 17:38:36 (GMT)
commitf962e61627df0d5ecf5d14cd7680e52fd8c9ca9a (patch)
tree43973d114e9f6277417b9634ddcf128a301073ce
parente12ec76f044b07d4e4fe167c93103be2879abaca (diff)
parent701598719c7c4301f2614b38184dfb37cd1704bc (diff)
downloadDoxygen-f962e61627df0d5ecf5d14cd7680e52fd8c9ca9a.zip
Doxygen-f962e61627df0d5ecf5d14cd7680e52fd8c9ca9a.tar.gz
Doxygen-f962e61627df0d5ecf5d14cd7680e52fd8c9ca9a.tar.bz2
Merge pull request #528 from dallerk/plantuml_cfg
Fix for PlantUML configuration
-rw-r--r--src/plantuml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 8e40f36..1171289 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -75,7 +75,7 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp
}
if (pumlIncludePathList.first()) pumlArgs += "\" ";
pumlArgs += "-Djava.awt.headless=true -jar \""+plantumlJarPath+"plantuml.jar\" ";
- if (plantumlConfigFile != "")
+ if (!plantumlConfigFile.isEmpty())
{
pumlArgs += "-config \"";
pumlArgs += plantumlConfigFile;