diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-09-21 18:54:53 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-09-21 18:54:53 (GMT) |
commit | 51ee1b0633fbfa935da08c8a13f70da6fc1c074d (patch) | |
tree | 698cce49c5061bcf0d1c8de81784a97696080a87 | |
parent | 9ee8f777f5a4b7a49e644c2da5247fa509038feb (diff) | |
download | Doxygen-51ee1b0633fbfa935da08c8a13f70da6fc1c074d.zip Doxygen-51ee1b0633fbfa935da08c8a13f70da6fc1c074d.tar.gz Doxygen-51ee1b0633fbfa935da08c8a13f70da6fc1c074d.tar.bz2 |
Bug 751755 - using plantuml cause a popup "openwith" windows when calling java.exe
-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 e3a85e4..ae9af43 100644 --- a/src/plantuml.cpp +++ b/src/plantuml.cpp @@ -101,7 +101,7 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp //printf("*** running: %s %s outDir:%s %s\n",pumlExe.data(),pumlArgs.data(),outDir,outFile); msg("Running PlantUML on generated file %s.pu\n",baseName); portable_sysTimerStart(); - if ((exitCode=portable_system(pumlExe,pumlArgs,FALSE))!=0) + if ((exitCode=portable_system(pumlExe,pumlArgs,TRUE))!=0) { err("Problems running PlantUML. Verify that the command 'java -jar \"%splantuml.jar\" -h' works from the command line. Exit code: %d\n", plantumlJarPath.data(),exitCode); |