summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 10:26:56 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 10:26:56 +0000
commitbe5703826b2de1b02421290463e582232d66bd40 (patch)
treeda2cf289fb6b3e50efd192c81709594e9bbe4ee8
parent9c8229bec61fe62707568eaaf06b8ec4a02a86e6 (diff)
INTEGRATION: CWS calcer (1.2.222); FILE MERGED
2005/02/18 18:48:39 er 1.2.222.1: initialization order
-rw-r--r--sc/inc/bigrange.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/bigrange.hxx b/sc/inc/bigrange.hxx
index 699772736..09e618221 100644
--- a/sc/inc/bigrange.hxx
+++ b/sc/inc/bigrange.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bigrange.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 10:02:15 $
+ * last change: $Author: vg $ $Date: 2005-03-08 11:26:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,13 +82,13 @@ class ScBigAddress
INT32 nTab;
public:
- ScBigAddress() : nCol(0), nRow(0), nTab(0) {}
+ ScBigAddress() : nRow(0), nCol(0), nTab(0) {}
ScBigAddress( INT32 nColP, INT32 nRowP, INT32 nTabP )
- : nCol( nColP ), nRow( nRowP ), nTab( nTabP ) {}
+ : nRow( nRowP ), nCol( nColP ), nTab( nTabP ) {}
ScBigAddress( const ScBigAddress& r )
- : nCol( r.nCol ), nRow( r.nRow ), nTab( r.nTab ) {}
+ : nRow( r.nRow ), nCol( r.nCol ), nTab( r.nTab ) {}
ScBigAddress( const ScAddress& r )
- : nCol( r.Col() ), nRow( r.Row() ), nTab( r.Tab() ) {}
+ : nRow( r.Row() ), nCol( r.Col() ), nTab( r.Tab() ) {}
INT32 Col() const { return nCol; }
INT32 Row() const { return nRow; }