summaryrefslogtreecommitdiffstats
path: root/src/translator_en.h
diff options
context:
space:
mode:
authorAndreas Regel <andreas.regel@newayselectronics.com>2018-01-09 11:20:32 (GMT)
committerAndreas Regel <andreas.regel@newayselectronics.com>2018-01-09 11:55:25 (GMT)
commit9f7406d151e4f5d021558e97f5d87a0d9cacecf9 (patch)
treea073620110feea62920d7842b510d81e4dcf5d67 /src/translator_en.h
parentda7ff05881501450be84bc870fdb1931b7e57af2 (diff)
downloadDoxygen-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.h12
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. */