diff options
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index 9e841e2..13062fe 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -1051,6 +1051,8 @@ class TranslatorEnglish : public Translator "class Undocumented { };\n\n" "/*! Class that is inherited using public inheritance */\n" "class PublicBase : public Truncated { };\n\n" + "/*! A template class */\n" + "template<class T> class Templ { };\n\n" "/*! Class that is inherited using protected inheritance */\n" "class ProtectedBase { };\n\n" "/*! Class that is inherited using private inheritance */\n" @@ -1062,13 +1064,14 @@ class TranslatorEnglish : public Translator " protected ProtectedBase,\n" " private PrivateBase,\n" " public Undocumented\n" + " public Templ<int>\n" "{\n" " private:\n" " Used *m_usedClass;\n" "};\n" "\\endcode\n" "If the \\c MAX_DOT_GRAPH_HEIGHT tag in the configuration file " - "is set to 200 this will result in the following graph:" + "is set to 240 this will result in the following graph:" "<p><center><img src=\"graph_legend.gif\"></center>\n" "<p>\n" "The boxes in the above graph have the following meaning:\n" @@ -1077,9 +1080,9 @@ class TranslatorEnglish : public Translator "graph is generated.\n" "<li>%A box with a black border denotes a documented struct or class.\n" "<li>%A box with a grey border denotes an undocumented struct or class.\n" - "<li>%A box with a red border denotes a documented struct or class for\n" + "<li>%A box with a red border denotes a documented struct or class for" "which not all inheritance/containment relations are shown. %A graph is " - "truncated if it does not fit within the specified boundaries." + "truncated if it does not fit within the specified boundaries.\n" "</ul>\n" "The arrows have the following meaning:\n" "<ul>\n" @@ -1089,7 +1092,10 @@ class TranslatorEnglish : public Translator "<li>%A dark red arrow is used for private inheritance.\n" "<li>%A purple dashed arrow is used if a class is contained or used " "by another class. The arrow is labeled with the variable(s) " - "through which the pointed class or struct is accessible. \n" + "through which the pointed class or struct is accessible.\n" + "<li>%A yellow dashed arrow denotes a relation between a template instance and " + "the template class it was instantiated from. The arrow is labeled with " + "the template parameters of the instance.\n" "</ul>\n"; } /*! text for the link to the legend page */ |