summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-09-07 13:16:40 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-09-07 13:16:40 (GMT)
commited0da5fe85e17eb0f7071fff12e851e92c2d79e6 (patch)
tree1bee8d6831b86088f2389e2dcb1a246491f39b6a /src/plantuml.cpp
parentaf14bab65f67d66b65f2ddf5c5d76a96f23cd447 (diff)
downloadDoxygen-ed0da5fe85e17eb0f7071fff12e851e92c2d79e6.zip
Doxygen-ed0da5fe85e17eb0f7071fff12e851e92c2d79e6.tar.gz
Doxygen-ed0da5fe85e17eb0f7071fff12e851e92c2d79e6.tar.bz2
Support charset option for PlantUNL
Use as charset for PlantUML the same character set as de INPUT_ENCODING of the input source
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 7e2863e..b15d137 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -79,6 +79,7 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp
pumlArgs+=" \"";
pumlArgs+=baseName;
pumlArgs+=".pu\" ";
+ pumlArgs+="-charset " + Config_getString("INPUT_ENCODING") + " ";
int exitCode;
//printf("*** running: %s %s outDir:%s %s\n",pumlExe.data(),pumlArgs.data(),outDir,outFile);
msg("Running PlantUML on generated file %s.pu\n",baseName);