diff options
Diffstat (limited to 'sc/inc/address.hxx')
-rw-r--r-- | sc/inc/address.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx index 5f394983c016..0a489ae0d44a 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -776,10 +776,9 @@ public: ScRefAddress() : bRelCol(false), bRelRow(false), bRelTab(false) {} - ScRefAddress( SCCOL nCol, SCROW nRow, SCTAB nTab, - bool bRelColP, bool bRelRowP, bool bRelTabP ) : + ScRefAddress( SCCOL nCol, SCROW nRow, SCTAB nTab ) : aAdr(nCol, nRow, nTab), - bRelCol(bRelColP), bRelRow(bRelRowP), bRelTab(bRelTabP) + bRelCol(false), bRelRow(false), bRelTab(false) {} ScRefAddress( const ScRefAddress& rRef ) : aAdr(rRef.aAdr), bRelCol(rRef.bRelCol), bRelRow(rRef.bRelRow), |