diff options
author | albert-github <albert.tests@gmail.com> | 2020-03-17 19:29:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 19:29:45 (GMT) |
commit | 39ba759f4dba837818f07451314b3612d438a1bd (patch) | |
tree | 6d10f007a4107613446f308e7bf2107144e5b11b /addon | |
parent | 0f9075aefb620bbef4609111289ff6255ac15cd3 (diff) | |
download | Doxygen-39ba759f4dba837818f07451314b3612d438a1bd.zip Doxygen-39ba759f4dba837818f07451314b3612d438a1bd.tar.gz Doxygen-39ba759f4dba837818f07451314b3612d438a1bd.tar.bz2 |
Doxygen version information (#7645)
- add doxygen version to rtf, comment, output
- remove duplicate code (getFullVersion)
- more clear name to get doxygen version (getVersion becomes getrDoxygenVersion). Also to overcomecofusion with the version information for files.
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxyparse/doxyparse.cpp | 2 | ||||
-rwxr-xr-x | addon/doxywizard/doxywizard.cpp | 2 | ||||
-rw-r--r-- | addon/doxywizard/expert.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/addon/doxyparse/doxyparse.cpp b/addon/doxyparse/doxyparse.cpp index 78a91d3..24769e0 100644 --- a/addon/doxyparse/doxyparse.cpp +++ b/addon/doxyparse/doxyparse.cpp @@ -434,7 +434,7 @@ int main(int argc,char **argv) { exit(1); } if (qstrcmp(&argv[1][2], "version") == 0) { - QCString versionString = getVersion(); + QCString versionString = getDoxygenVersion(); printf("%s\n", versionString.data()); exit(0); } diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index dc0a6dc..d0811d4 100755 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -228,7 +228,7 @@ void MainWindow::about() QString msg; QTextStream t(&msg,QIODevice::WriteOnly); t << QString::fromLatin1("<qt><center>A tool to configure and run doxygen version ")+ - QString::fromLatin1(getVersion())+ + QString::fromLatin1(getDoxygenVersion())+ QString::fromLatin1(" on your source files.</center><p><br>" "<center>Written by<br> Dimitri van Heesch<br>© 2000-2019</center><p>" "</qt>"); diff --git a/addon/doxywizard/expert.cpp b/addon/doxywizard/expert.cpp index 1303a22..c043994 100644 --- a/addon/doxywizard/expert.cpp +++ b/addon/doxywizard/expert.cpp @@ -796,7 +796,7 @@ void Expert::saveTopic(QTextStream &t,QDomElement &elem,QTextCodec *codec, bool Expert::writeConfig(QTextStream &t,bool brief) { // write global header - t << "# Doxyfile " << getVersion() << endl << endl; + t << "# Doxyfile " << getDoxygenVersion() << endl << endl; if (!brief) { t << convertToComment(m_header); |