summaryrefslogtreecommitdiff
path: root/sc/inc/bigrange.hxx
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
commitef80f426c6346524b1c35bcb25c7b846aa80c007 (patch)
tree4bc91808ff36c46d17c1332f3b1ff9aa71159e39 /sc/inc/bigrange.hxx
parentab2ba47db94de80eaaabfbd47f123eb06e0a7628 (diff)
INTEGRATION: CWS calcer (1.2.222); FILE MERGED
2005/02/18 18:48:39 er 1.2.222.1: initialization order
Diffstat (limited to 'sc/inc/bigrange.hxx')
-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 3a898fe1f768..ad8b26ea6864 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; }