summaryrefslogtreecommitdiff
path: root/autodoc/source/parser_i/inc/tokens/stmstat2.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/parser_i/inc/tokens/stmstat2.hxx')
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstat2.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/autodoc/source/parser_i/inc/tokens/stmstat2.hxx b/autodoc/source/parser_i/inc/tokens/stmstat2.hxx
index 3d83bb0f77fb..4602da49c59c 100644
--- a/autodoc/source/parser_i/inc/tokens/stmstat2.hxx
+++ b/autodoc/source/parser_i/inc/tokens/stmstat2.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -36,21 +36,21 @@
class StmArrayStatu2;
class StmBoundsStatu2;
-/** A StmStatu2 is a state within a StateMachin2.
+/** A StmStatu2 is a state within a StateMachin2.
There are two kinds of it. Either its an array of pointers to
other states within the state machine - an ArrayStatus.
Or it is a BoundsStatus, which shows, the token cannot be
followed further within the StateMachin2.
**/
-class StmStatu2 // := "State machine status"
+class StmStatu2 // := "State machine status"
{
public:
- typedef intt Branch; /// Values >= 0 give a next #Status' ID.
+ typedef intt Branch; /// Values >= 0 give a next #Status' ID.
/// Values <= 0 tell, that a token is finished.
/// a value < 0 returns the status back to an upper level state machine.
// LIFECYCLE
- virtual ~StmStatu2() {}
+ virtual ~StmStatu2() {}
// OPERATIONS
virtual StmArrayStatu2 *
@@ -59,7 +59,7 @@ class StmStatu2 // := "State machine status"
AsBounds();
// INQUIRY
- virtual bool IsADefault() const = 0;
+ virtual bool IsADefault() const = 0;
};