diff options
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r-- | src/translator_nl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h index 5aae01f..e2de0fc 100644 --- a/src/translator_nl.h +++ b/src/translator_nl.h @@ -261,10 +261,12 @@ class TranslatorDutch : public Translator ////////////////////////////////////////////////////////////////////////// QCString trCompoundReference(const char *clName, - ClassDef::CompoundType compType) + ClassDef::CompoundType compType, + bool isTemplate) // used as the title of the HTML page of a class/struct/union { QCString result=(QCString)clName+" "; + if (isTemplate) result+=" Template"; switch(compType) { case ClassDef::Class: result+=" Class"; break; |