summaryrefslogtreecommitdiffstats
path: root/src/translator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator.h')
-rw-r--r--src/translator.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/translator.h b/src/translator.h
index 5808ae1..4849c95 100644
--- a/src/translator.h
+++ b/src/translator.h
@@ -566,7 +566,9 @@ class Translator
virtual QCString trGeneratedBy()
{ return "Generated by"; }
- // new since 0.49-990307
+//////////////////////////////////////////////////////////////////////////
+// new since 0.49-990307
+//////////////////////////////////////////////////////////////////////////
/*! used as the title of page containing all the index of all namespaces. */
virtual QCString trNamespaceList()
@@ -607,7 +609,6 @@ class Translator
bool isTemplate)
{
QCString result=(QCString)clName+" ";
- if (isTemplate) result+=" Template";
switch(compType)
{
case ClassDef::Class: result+=" Class"; break;
@@ -616,6 +617,7 @@ class Translator
case ClassDef::Interface: result+=" Interface"; break;
case ClassDef::Exception: result+=" Exception"; break;
}
+ if (isTemplate) result+=" Template";
result+=" Reference";
return result;
}
@@ -1086,6 +1088,20 @@ class Translator
return "DCOP Methods";
}
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.2
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Used as a section header for IDL properties */
+ virtual QCString trProperties()
+ {
+ return "Properties";
+ }
+ /*! Used as a section header for IDL property documentation */
+ virtual QCString trPropertyDocumentation()
+ {
+ return "Property Documentation";
+ }
};
#endif