summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
diff options
context:
space:
mode:
authorCharles.Lee <cheoljoo.lee@lge.com>2018-08-29 04:57:53 (GMT)
committerCharles.Lee <cheoljoo.lee@lge.com>2018-08-29 04:57:53 (GMT)
commitaeff95e38dca51f4a9ace9af8aa0387ad683f7f0 (patch)
treecd57baf92c55e3e34527396e59cca482a7f5170d /src/plantuml.cpp
parent0e3a86dac994c013694aca2c9b1c07e4518b2730 (diff)
downloadDoxygen-aeff95e38dca51f4a9ace9af8aa0387ad683f7f0.zip
Doxygen-aeff95e38dca51f4a9ace9af8aa0387ad683f7f0.tar.gz
Doxygen-aeff95e38dca51f4a9ace9af8aa0387ad683f7f0.tar.bz2
PLANTUML_RUN_JAVA_ONCE is working well. But some specific plantuml has error on ver 1.8.15
Diffstat (limited to 'src/plantuml.cpp')
-rw-r--r--src/plantuml.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp
index d3d139e..3742ced 100644
--- a/src/plantuml.cpp
+++ b/src/plantuml.cpp
@@ -34,6 +34,7 @@ QCString writePlantUMLSource(const QCString &outDir,const QCString &fileName,con
QCString imgName(4096);
static int umlindex=1;
+ //printf("*** %s fileName: %s\n","writePlantUMLSource",qPrint(fileName));
Debug::print(Debug::Plantuml,0,"*** %s fileName: %s\n","writePlantUMLSource",qPrint(fileName));
Debug::print(Debug::Plantuml,0,"*** %s outDir: %s\n","writePlantUMLSource",qPrint(outDir));
@@ -103,6 +104,7 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp
QCString pumlExe = "java";
QCString pumlArgs = "";
+ //printf("*** %s %s\n","generatePlantUMLOutput",baseName);
QStrList &pumlIncludePathList = Config_getList(PLANTUML_INCLUDE_PATH);
char *s=pumlIncludePathList.first();
if (s)
@@ -503,7 +505,7 @@ void PlantumlManager::print(QDict<QCString> &PlantumlContent)
for (it.toFirst();(nb=it.current());++it)
{
Debug::print(Debug::Plantuml,0,"*** %s PlantumlContent key:%s\n","PlantumlManager::print",qPrint(it.currentKey()));
- Debug::print(Debug::Plantuml,0,"*** Content :%s\n\n\n",qPrint(*nb));
+ Debug::print(Debug::Plantuml,0,"*** Content :%s\n",qPrint(*nb));
}
}
}
@@ -525,7 +527,7 @@ void PlantumlManager::addPlantumlContent(QDict< QCString > &PlantumlContent,cons
QCString* content = PlantumlContent.find(key);
if(content == 0){
content = new QCString("");
- m_pngPlantumlContent.insert(key,content);
+ PlantumlContent.insert(key,content);
}
(*content)+=puContent;
}