summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authorDennis Allerkamp <git@dennis-allerkamp.de>2016-09-24 13:11:27 (GMT)
committerDennis Allerkamp <git@dennis-allerkamp.de>2016-09-24 13:11:27 (GMT)
commit701598719c7c4301f2614b38184dfb37cd1704bc (patch)
tree43973d114e9f6277417b9634ddcf128a301073ce /src/plantuml.cpp
parente12ec76f044b07d4e4fe167c93103be2879abaca (diff)
downloadDoxygen-701598719c7c4301f2614b38184dfb37cd1704bc.zip
Doxygen-701598719c7c4301f2614b38184dfb37cd1704bc.tar.gz
Doxygen-701598719c7c4301f2614b38184dfb37cd1704bc.tar.bz2
Fix for PlantUML configuration
Only if PlantUML configuration file is configured, then it will be passed as an argument to plantuml.jar.
Diffstat (limited to 'src/plantuml.cpp')
-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;