diff options
author | Andreas Regel <andreas.regel@newayselectronics.com> | 2018-01-09 11:20:32 (GMT) |
---|---|---|
committer | Andreas Regel <andreas.regel@newayselectronics.com> | 2018-01-09 11:55:25 (GMT) |
commit | 9f7406d151e4f5d021558e97f5d87a0d9cacecf9 (patch) | |
tree | a073620110feea62920d7842b510d81e4dcf5d67 /src/translator_en.h | |
parent | da7ff05881501450be84bc870fdb1931b7e57af2 (diff) | |
download | Doxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.zip Doxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.tar.gz Doxygen-9f7406d151e4f5d021558e97f5d87a0d9cacecf9.tar.bz2 |
Return VHDL specific text in trClassHierarchyDescription()
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index a236978..d12621e 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -224,8 +224,16 @@ class TranslatorEnglish : public Translator /*! This is an introduction to the class hierarchy. */ virtual QCString trClassHierarchyDescription() - { return "This inheritance list is sorted roughly, " - "but not completely, alphabetically:"; + { + if (Config_getBool(OPTIMIZE_OUTPUT_VHDL)) + { + return "Here is a hierarchical list of all entities:"; + } + else + { + return "This inheritance list is sorted roughly, " + "but not completely, alphabetically:"; + } } /*! This is an introduction to the list with all files. */ |