summaryrefslogtreecommitdiffstats
path: root/libversion
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-03-17 19:29:45 (GMT)
committerGitHub <noreply@github.com>2020-03-17 19:29:45 (GMT)
commit39ba759f4dba837818f07451314b3612d438a1bd (patch)
tree6d10f007a4107613446f308e7bf2107144e5b11b /libversion
parent0f9075aefb620bbef4609111289ff6255ac15cd3 (diff)
downloadDoxygen-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 'libversion')
-rw-r--r--libversion/doxyversion.cpp.in2
-rw-r--r--libversion/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libversion/doxyversion.cpp.in b/libversion/doxyversion.cpp.in
index 11bca8d..614aa07 100644
--- a/libversion/doxyversion.cpp.in
+++ b/libversion/doxyversion.cpp.in
@@ -1,6 +1,6 @@
#include "version.h"
-char *getVersion(void)
+char *getDoxygenVersion(void)
{
static char versionString[] = "@DOXYGEN_VERSION@";
return versionString;
diff --git a/libversion/version.h b/libversion/version.h
index a656e74..22a054d 100644
--- a/libversion/version.h
+++ b/libversion/version.h
@@ -17,6 +17,6 @@
#ifndef VERSION_H
#define VERSION_H
-char *getVersion(void);
+char *getDoxygenVersion(void);
char *getGitVersion(void);
#endif