diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-12 17:43:22 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-12 17:43:22 (GMT) |
commit | de611600b5521fab9d65a1b4f27d2042e7b546f9 (patch) | |
tree | e9f3eb760b666941c8905588b99d5e8378c8b507 /src/translator.h | |
parent | 000241f7603af61328b25cd9a9defc40be43e558 (diff) | |
download | Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.zip Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.gz Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.bz2 |
Release 1.1.1
Diffstat (limited to 'src/translator.h')
-rw-r--r-- | src/translator.h | 53 |
1 files changed, 47 insertions, 6 deletions
diff --git a/src/translator.h b/src/translator.h index 1a8842e..ce81a7b 100644 --- a/src/translator.h +++ b/src/translator.h @@ -553,25 +553,25 @@ class Translator * these are for the member sections of a class, struct or union */ virtual QCString trPublicMembers() - { return "Public Members"; } + { return "Public Methods"; } virtual QCString trPublicSlots() { return "Public Slots"; } virtual QCString trSignals() { return "Signals"; } virtual QCString trStaticPublicMembers() - { return "Static Public Members"; } + { return "Static Public Methods"; } virtual QCString trProtectedMembers() - { return "Protected Members"; } + { return "Protected Methods"; } virtual QCString trProtectedSlots() { return "Protected Slots"; } virtual QCString trStaticProtectedMembers() - { return "Static Protected Members"; } + { return "Static Protected Methods"; } virtual QCString trPrivateMembers() - { return "Private Members"; } + { return "Private Methods"; } virtual QCString trPrivateSlots() { return "Private Slots"; } virtual QCString trStaticPrivateMembers() - { return "Static Private Members"; } + { return "Static Private Methods"; } /*! \endmgroup */ /*! this function is used to produce a comma-separated list of items. @@ -815,6 +815,47 @@ class Translator { return "Page Index"; } + virtual QCString trNote() + { + return "Note"; + } + + virtual QCString trPublicTypes() + { + return "Public Types"; + } + virtual QCString trPublicAttribs() + { + return "Public Attributes"; + } + virtual QCString trStaticPublicAttribs() + { + return "Static Public Attributes"; + } + virtual QCString trProtectedTypes() + { + return "Protected Types"; + } + virtual QCString trProtectedAttribs() + { + return "Protected Attributes"; + } + virtual QCString trStaticProtectedAttribs() + { + return "Static Protected Attributes"; + } + virtual QCString trPrivateTypes() + { + return "Private Types"; + } + virtual QCString trPrivateAttribs() + { + return "Private Attributes"; + } + virtual QCString trStaticPrivateAttribs() + { + return "Static Private Attributes"; + } }; #endif |