summaryrefslogtreecommitdiff
path: root/sw/inc/tox.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <cmc@openoffice.org>2002-11-18 15:54:06 +0000
committerCaolán McNamara <cmc@openoffice.org>2002-11-18 15:54:06 +0000
commit9ca6f6aa25c7e48570aa2f3440327fda22acf7fc (patch)
tree8f23564aa46ce835cfd149f947dafa7f97a18e1d /sw/inc/tox.hxx
parentfe26323792d0382546fdc6bea3863b4ea0926d8d (diff)
#i9055# match member init order with decl order, cosmetic in this case
Diffstat (limited to 'sw/inc/tox.hxx')
-rw-r--r--sw/inc/tox.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/tox.hxx b/sw/inc/tox.hxx
index 9b4b0ab6e4..4ab2987ede 100644
--- a/sw/inc/tox.hxx
+++ b/sw/inc/tox.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tox.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: fme $ $Date: 2002-06-06 13:11:57 $
+ * last change: $Author: cmc $ $Date: 2002-11-18 16:54:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -246,13 +246,13 @@ struct SwFormToken
sal_Unicode cTabFillChar;
SwFormToken(FormTokenType eType ) :
- eTokenType(eType),
nTabStopPosition(0),
+ eTokenType(eType),
nPoolId(USHRT_MAX),
eTabAlign(0 /*SVX_TAB_ADJUST_LEFT*/),
- cTabFillChar(' '),
nChapterFormat(0 /*CF_NUMBER*/),
- nAuthorityField(0)/*AUTH_FIELD_IDENTIFIER*/{}
+ nAuthorityField(0 /*AUTH_FIELD_IDENTIFIER*/),
+ cTabFillChar(' ') {}
String GetString() const;
};