diff options
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index c7ab6c7..fe88737 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -638,7 +638,7 @@ class TranslatorEnglish : public Translator ClassDef::CompoundType compType, bool isTemplate) { - QCString result=(QCString)clName+" "; + QCString result=(QCString)clName; switch(compType) { case ClassDef::Class: result+=" Class"; break; @@ -1392,6 +1392,18 @@ class TranslatorEnglish : public Translator return "Implemented in "+trWriteList(numEntries)+"."; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.16 +////////////////////////////////////////////////////////////////////////// + + /*! used in RTF documentation as a heading for the Table + * of Contents. + */ + virtual QCString trRTFTableOfContents() + { + return "Table of Contents"; + } + }; #endif |