summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-06-12 13:33:43 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-06-12 13:33:43 (GMT)
commita50c7551d3e8cb18514f517d36b6ba343596a426 (patch)
tree87f873bedb1e25ea5e8fc31c679ac41f72ac0189 /src/plantuml.cpp
parent4536982bdebc0056d0c5d64a12881f20b5801c06 (diff)
downloadDoxygen-a50c7551d3e8cb18514f517d36b6ba343596a426.zip
Doxygen-a50c7551d3e8cb18514f517d36b6ba343596a426.tar.gz
Doxygen-a50c7551d3e8cb18514f517d36b6ba343596a426.tar.bz2
Bug 792449 - markdown plantuml use of graphviz fail if plantuml work i code file
Added the commandExtension as required by plantuml in case the path is given.
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 609d5fd..89e6e9e 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -88,7 +88,9 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp
{
pumlArgs += "-graphvizdot \"";
pumlArgs += dotPath;
- pumlArgs += "dot\" ";
+ pumlArgs += "dot";
+ pumlArgs += portable_commandExtension();
+ pumlArgs += "\" ";
}
pumlArgs+="-o \"";
pumlArgs+=outDir;