diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-24 18:23:52 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-06-24 18:23:52 (GMT) |
commit | 873e0ccfbe43ef98d4858beb08eef37631ae3cf6 (patch) | |
tree | 723c74c8ec94bf8603f05df19ac58c1bc53be37d /src/configimpl.l | |
parent | 1fae484ad6abf53cfb3364df173db3522c3e0e29 (diff) | |
download | Doxygen-873e0ccfbe43ef98d4858beb08eef37631ae3cf6.zip Doxygen-873e0ccfbe43ef98d4858beb08eef37631ae3cf6.tar.gz Doxygen-873e0ccfbe43ef98d4858beb08eef37631ae3cf6.tar.bz2 |
Made MSCGEN_PATH obsolete now that mscgen code is part of doxygen
Diffstat (limited to 'src/configimpl.l')
-rw-r--r-- | src/configimpl.l | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index d114b4a..bc08cbf 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -1565,30 +1565,6 @@ void Config::checkAndCorrect() dotPath=""; } - // check mscgen path - QCString &mscgenPath = ConfigImpl_getString("MSCGEN_PATH"); - if (!mscgenPath.isEmpty()) - { - QFileInfo dp(mscgenPath+"/mscgen"+portable_commandExtension()); - if (!dp.exists() || !dp.isFile()) - { - warn_uncond("the mscgen tool could not be found at %s\n",mscgenPath.data()); - mscgenPath=""; - } - else - { - mscgenPath=dp.dirPath(TRUE).utf8()+"/"; -#if defined(_WIN32) // convert slashes - uint i=0,l=mscgenPath.length(); - for (i=0;i<l;i++) if (mscgenPath.at(i)=='/') mscgenPath.at(i)='\\'; -#endif - } - } - else // make sure the string is empty but not null! - { - mscgenPath=""; - } - // check plantuml path QCString &plantumlJarPath = ConfigImpl_getString("PLANTUML_JAR_PATH"); if (!plantumlJarPath.isEmpty()) |