diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-26 19:13:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 19:13:11 (GMT) |
commit | d6dfcab60bf01e4deeae333a230c9bd752666efb (patch) | |
tree | 132444ad6c29e34cbce83fa4846ae30be19440ef /src | |
parent | 15aab7a916d8d542dfe04213cbf281c58fde190b (diff) | |
parent | 340bc65a8bfea8c5edf35969598c8a40f0b24ed6 (diff) | |
download | Doxygen-d6dfcab60bf01e4deeae333a230c9bd752666efb.zip Doxygen-d6dfcab60bf01e4deeae333a230c9bd752666efb.tar.gz Doxygen-d6dfcab60bf01e4deeae333a230c9bd752666efb.tar.bz2 |
Merge pull request #7079 from albert-github/feature/regr_6885
regression #6885 mscgen links placed in the wrong place when using SVG output
Diffstat (limited to 'src')
-rw-r--r-- | src/msc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msc.cpp b/src/msc.cpp index ed049c6..0137e1b 100644 --- a/src/msc.cpp +++ b/src/msc.cpp @@ -99,7 +99,7 @@ void writeMscGraphFromFile(const char *inFile,const char *outDir, absOutFile+=outFile; mscgen_format_t msc_format; - QCString imgName = outFile; + QCString imgName = absOutFile; switch (format) { case MSC_BITMAP: @@ -129,7 +129,7 @@ void writeMscGraphFromFile(const char *inFile,const char *outDir, { QCString epstopdfArgs(maxCmdLine); epstopdfArgs.sprintf("\"%s.eps\" --outfile=\"%s.pdf\"", - outFile,outFile); + absOutFile.data(),absOutFile.data()); portable_sysTimerStart(); if (portable_system("epstopdf",epstopdfArgs)!=0) { |