diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-05 19:00:55 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-05 19:00:55 (GMT) |
commit | 8b520502615f8fa68736d3e819c319a7f0594532 (patch) | |
tree | 912d22a207a65d4bb3ea7b2082ae40a279f17dd0 /src/diagram.cpp | |
parent | a6cc6b116194fc090532718fd4e1e0b22396052d (diff) | |
download | Doxygen-8b520502615f8fa68736d3e819c319a7f0594532.zip Doxygen-8b520502615f8fa68736d3e819c319a7f0594532.tar.gz Doxygen-8b520502615f8fa68736d3e819c319a7f0594532.tar.bz2 |
Release-1.2.3-20001105
Diffstat (limited to 'src/diagram.cpp')
-rw-r--r-- | src/diagram.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/diagram.cpp b/src/diagram.cpp index 4808565..517433a 100644 --- a/src/diagram.cpp +++ b/src/diagram.cpp @@ -1235,13 +1235,15 @@ void ClassDiagram::writeFigure(QTextStream &output,const char *path, if (Config::usePDFLatexFlag) { QCString epstopdfCmd(4096); - epstopdfCmd.sprintf("epstopdf \"%s.eps\" -outfile=\"%s.pdf\"", - epsBaseName.data(),epsBaseName.data()); + //epstopdfCmd.sprintf("epstopdf \"%s.eps\" -outfile=\"%s.pdf\"", + // epsBaseName.data(),epsBaseName.data()); + //printf("Converting eps using `%s'\n",epstopdfCmd.data()); if (iSystem(epstopdfCmd)!=0) { err("Error: Problems running epstopdf. Check your TeX installation!\n"); return; } + printf("done\n"); } } |