Index: inc/scextopt.hxx =================================================================== RCS file: /cvs/sc/sc/inc/scextopt.hxx,v retrieving revision 1.6 diff -r1.6 scextopt.hxx 180c180 < void Add( const ColRowSettings& rCRS ); --- > void Add( const UINT16 nTab, const ColRowSettings& rCRS ); Index: source/filter/excel/colrowst.cxx =================================================================== RCS file: /cvs/sc/sc/source/filter/excel/colrowst.cxx,v retrieving revision 1.17 diff -r1.17 colrowst.cxx 266c266 < pExcRoot->pExtDocOpt->Add( *this ); --- > pExcRoot->pExtDocOpt->Add( nAktTab, *this ); 633c633 < void ScExtDocOptions::Add( const ColRowSettings& rCRS ) --- > void ScExtDocOptions::Add( const UINT16 nTab, const ColRowSettings& rCRS ) 635,636d634 < const UINT16 nTab = rCRS.pExcRoot->pIR->GetScTab(); <