summaryrefslogtreecommitdiffstats
path: root/src/msc.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-25 09:09:33 (GMT)
committerGitHub <noreply@github.com>2019-12-25 09:09:33 (GMT)
commit80f1f380f199f470ef9678a413d537feba68d87a (patch)
tree57ad379d75b0ede4af42ec20e1d21fd04c9b5360 /src/msc.cpp
parent36c549da50d685fd8be82e88cb63db5cf13c57f5 (diff)
parentff3fdb3ac14a1f90334ca6c40eac46c772b5af63 (diff)
downloadDoxygen-80f1f380f199f470ef9678a413d537feba68d87a.zip
Doxygen-80f1f380f199f470ef9678a413d537feba68d87a.tar.gz
Doxygen-80f1f380f199f470ef9678a413d537feba68d87a.tar.bz2
Merge branch 'master' into feature/bug_style_change
Diffstat (limited to 'src/msc.cpp')
-rw-r--r--src/msc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msc.cpp b/src/msc.cpp
index 51e23fa..29c9334 100644
--- a/src/msc.cpp
+++ b/src/msc.cpp
@@ -95,7 +95,7 @@ void writeMscGraphFromFile(const char *inFile,const char *outDir,
const char *outFile,MscOutputFormat format)
{
QCString absOutFile = outDir;
- absOutFile+=portable_pathSeparator();
+ absOutFile+=Portable::pathSeparator();
absOutFile+=outFile;
mscgen_format_t msc_format;
@@ -130,12 +130,12 @@ void writeMscGraphFromFile(const char *inFile,const char *outDir,
QCString epstopdfArgs(maxCmdLine);
epstopdfArgs.sprintf("\"%s.eps\" --outfile=\"%s.pdf\"",
absOutFile.data(),absOutFile.data());
- portable_sysTimerStart();
- if (portable_system("epstopdf",epstopdfArgs)!=0)
+ Portable::sysTimerStart();
+ if (Portable::system("epstopdf",epstopdfArgs)!=0)
{
err("Problems running epstopdf. Check your TeX installation!\n");
}
- portable_sysTimerStop();
+ Portable::sysTimerStop();
}
Doxygen::indexList->addImageFile(imgName);