summaryrefslogtreecommitdiff
path: root/sc/inc/token.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 10:28:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 10:28:51 +0000
commit5d76b7c73fe1037cd8d4fe056ee29716c025ceb1 (patch)
treee1926fcbb11a7232cd42d6a61edd6d171efb4462 /sc/inc/token.hxx
parentd98411dfe6f957913d117ce5b2c66eddaa9595d0 (diff)
INTEGRATION: CWS calcer (1.8.290); FILE MERGED
2004/11/16 14:23:14 er 1.8.290.1: initialization order (gcc warning)
Diffstat (limited to 'sc/inc/token.hxx')
-rw-r--r--sc/inc/token.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx
index b80dd1c3acc1..cb001ed5339d 100644
--- a/sc/inc/token.hxx
+++ b/sc/inc/token.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: token.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2004-03-08 11:42:25 $
+ * last change: $Author: vg $ $Date: 2005-03-08 11:28:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -430,14 +430,14 @@ private:
BYTE nByte;
public:
ScExternalToken( OpCode e, BYTE n, const String& r ) :
- ScToken( e, svExternal ), nByte( n ),
- aExternal( r ) {}
+ ScToken( e, svExternal ), aExternal( r ),
+ nByte( n ) {}
ScExternalToken( OpCode e, const String& r ) :
- ScToken( e, svExternal ), nByte( 0 ),
- aExternal( r ) {}
+ ScToken( e, svExternal ), aExternal( r ),
+ nByte( 0 ) {}
ScExternalToken( const ScExternalToken& r ) :
- ScToken( r ), nByte( r.nByte ),
- aExternal( r.aExternal ) {}
+ ScToken( r ), aExternal( r.aExternal ),
+ nByte( r.nByte ) {}
virtual const String& GetExternal() const;
virtual BYTE GetByte() const;
virtual void SetByte( BYTE n );