diff options
author | Dennis Allerkamp <git@dennis-allerkamp.de> | 2016-09-24 13:11:27 (GMT) |
---|---|---|
committer | Dennis Allerkamp <git@dennis-allerkamp.de> | 2016-09-24 13:11:27 (GMT) |
commit | 701598719c7c4301f2614b38184dfb37cd1704bc (patch) | |
tree | 43973d114e9f6277417b9634ddcf128a301073ce | |
parent | e12ec76f044b07d4e4fe167c93103be2879abaca (diff) | |
download | Doxygen-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.
-rw-r--r-- | src/plantuml.cpp | 2 |
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; |