summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authorCharles.Lee <cheoljoo@gmail.com>2018-12-26 23:11:25 (GMT)
committerCharles.Lee <cheoljoo@gmail.com>2018-12-26 23:11:25 (GMT)
commit756d8b203b67f3ab38f7d148794bb94175a064a7 (patch)
treec203e8b0f9dc7361c31e145a0345750f627d3d97 /src/plantuml.cpp
parent5d6a6eae4a3c0e6469864fb2b292a7bafe2fb6f2 (diff)
downloadDoxygen-756d8b203b67f3ab38f7d148794bb94175a064a7.zip
Doxygen-756d8b203b67f3ab38f7d148794bb94175a064a7.tar.gz
Doxygen-756d8b203b67f3ab38f7d148794bb94175a064a7.tar.bz2
JAVA_ONCE -> FAST
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index 23601f5..c6ab7af 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -79,7 +79,7 @@ QCString writePlantUMLSource(const QCString &outDir,const QCString &fileName,con
file.close();
//Debug::print(Debug::Plantuml,0,"*** %s baseFileName text: %s\n","writePlantUMLSource",qPrint(text));
- if(Config_getBool(PLANTUML_RUN_JAVA_ONCE)){
+ if(Config_getBool(PLANTUML_RUN_FAST)){
QCString qcOutDir(outDir);
uint pos = qcOutDir.findRev("/");
QCString generateType(qcOutDir.right(qcOutDir.length() - (pos + 1)) );
@@ -163,7 +163,7 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp
int exitCode;
msg("Running PlantUML on generated file %s.pu\n",baseName);
portable_sysTimerStart();
- if(!Config_getBool(PLANTUML_RUN_JAVA_ONCE)){ // ! Config_getBool(PLANTUML_RUN_JAVA_ONCE)
+ if(!Config_getBool(PLANTUML_RUN_FAST)){ // ! Config_getBool(PLANTUML_RUN_FAST)
Debug::print(Debug::Plantuml,0,"*** running: %s %s outDir:%s %s\n",qPrint(pumlExe),qPrint(pumlArgs),outDir,baseName);
if ((exitCode=portable_system(pumlExe,pumlArgs,TRUE))!=0)
{