diff options
author | albert-github <albert.tests@gmail.com> | 2014-09-07 13:16:40 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-09-07 13:16:40 (GMT) |
commit | ed0da5fe85e17eb0f7071fff12e851e92c2d79e6 (patch) | |
tree | 1bee8d6831b86088f2389e2dcb1a246491f39b6a /src | |
parent | af14bab65f67d66b65f2ddf5c5d76a96f23cd447 (diff) | |
download | Doxygen-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')
-rw-r--r-- | src/plantuml.cpp | 1 |
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); |