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 | |
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')
-rw-r--r-- | src/config.xml | 12 | ||||
-rw-r--r-- | src/configimpl.l | 24 |
2 files changed, 1 insertions, 35 deletions
diff --git a/src/config.xml b/src/config.xml index f3b16a8..8e19d67 100644 --- a/src/config.xml +++ b/src/config.xml @@ -3251,17 +3251,6 @@ where `loc1` and `loc2` can be relative or absolute paths or URLs. ]]> </docs> </option> - <option type='string' id='MSCGEN_PATH' format='dir' defval=''> - <docs> -<![CDATA[ - You can define message sequence charts within doxygen comments using the \ref cmdmsc "\\msc" - command. Doxygen will then run the <a href="http://www.mcternan.me.uk/mscgen/">mscgen tool</a>) to - produce the chart and insert it in the documentation. The <code>MSCGEN_PATH</code> tag allows you to - specify the directory where the \c mscgen tool resides. If left empty the tool is assumed to - be found in the default search path. -]]> - </docs> - </option> <option type='string' id='DIA_PATH' format='dir' defval=''> <docs> <![CDATA[ @@ -3641,5 +3630,6 @@ remove the intermediate dot files that are used to generate the various graphs. <option type='obsolete' id='XML_SCHEMA'/> <option type='obsolete' id='XML_DTD'/> <option type='obsolete' id='PERL_PATH'/> + <option type='obsolete' id='MSCGEN_PATH'/> </group> </doxygenconfig> 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()) |