summaryrefslogtreecommitdiffstats
path: root/autodoc/source/parser/cpp/cx_c_std.cxx
diff options
context:
space:
mode:
authorAllmann-Rahn <allmann-rahn@ubuntu.ubuntu-domain>2011-08-22 11:39:37 +0200
committerMichael Meeks <michael.meeks@novell.com>2011-08-23 17:36:50 +0100
commitfbc30846acc2391a4c323c07ea04b308a685ce46 (patch)
tree83da7330222d751cfed20898f79f3b7a8d9b4ebe /autodoc/source/parser/cpp/cx_c_std.cxx
parentfix $JRELIBDIR/$JRETOOLKITDIR/$JRETHREADDIR for mips(el) (missing /jre) (diff)
downloadcore-fbc30846acc2391a4c323c07ea04b308a685ce46.tar.gz
core-fbc30846acc2391a4c323c07ea04b308a685ce46.zip
Translated German comments and removed the redundant ones in the directories accessibility to (incl.) basebmp.
Diffstat (limited to 'autodoc/source/parser/cpp/cx_c_std.cxx')
-rw-r--r--autodoc/source/parser/cpp/cx_c_std.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/autodoc/source/parser/cpp/cx_c_std.cxx b/autodoc/source/parser/cpp/cx_c_std.cxx
index 73eed711dad4..c3710d66332b 100644
--- a/autodoc/source/parser/cpp/cx_c_std.cxx
+++ b/autodoc/source/parser/cpp/cx_c_std.cxx
@@ -239,12 +239,12 @@ Context_CppStd::PerformStatusFunction( uintt i_nStatusSignal,
void
Context_CppStd::SetupStateMachine()
{
- // Besondere Array-Stati (kein Tokenabschluss oder Kontextwechsel):
-// const INT16 top = 0; // Top-Status
- const INT16 wht = 1; // Whitespace-überlese-Status
- const INT16 bez = 2; // Bezeichner-lese-Status
+ // special array statuses (no tokenfinish or change of context):
+// const INT16 top = 0; // top status
+ const INT16 wht = 1; // skip whitespace status
+ const INT16 bez = 2; // read identifier status
- // Tokenfinish-Stati:
+ // tokenfinish statuses:
const INT16 finError = 3;
const INT16 finIgnore = 4;
const INT16 finBezeichner = 5;
@@ -255,7 +255,7 @@ Context_CppStd::SetupStateMachine()
const INT16 finEOL = 10;
const INT16 finEOF = 11;
- // Kontextwechsel-Stati:
+ // change of context statuses:
const INT16 gotoComment = 12;
const INT16 gotoDocu = 13;
const INT16 gotoPreprocessor = 14;
@@ -264,7 +264,7 @@ Context_CppStd::SetupStateMachine()
const INT16 gotoConstNumeric = 17;
const INT16 gotoUnblockMacro = 18;
- // Abbreviations to be used in status tables:
+ // abbreviations to be used in status tables:
const INT16 err = finError;
const INT16 fig = finIgnore;
const INT16 fbz = finBezeichner;
@@ -378,7 +378,7 @@ Context_CppStd::SetupStateMachine()
DYN StmBoundsStatus * dpBst_gotoUnblockMacro
= new StmBoundsStatus( *this, *pContext_UnblockMacro, nF_goto_UnblockMacro, false );
- // dpMain aufbauen:
+ // construct dpMain:
aStateMachine.AddStatus(dpStatusTop);
aStateMachine.AddStatus(dpStatusWhite);