diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:48:56 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:48:56 +0000 |
commit | 8266101df1255979950c44b13752d6c501e00ca7 (patch) | |
tree | 4cdddb0face9b4ea6ec22a0daee69745ad61b4b0 /sc/source/ui/navipi | |
parent | f8f2a9ae44c8a2e77325e4c82f0ed35637cd402b (diff) |
INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED
2004/01/14 17:40:18 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/source/ui/navipi')
-rw-r--r-- | sc/source/ui/navipi/navcitem.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/navipi/navcitem.cxx b/sc/source/ui/navipi/navcitem.cxx index dffe57cf68b8..a84e4aaae2b4 100644 --- a/sc/source/ui/navipi/navcitem.cxx +++ b/sc/source/ui/navipi/navcitem.cxx @@ -2,9 +2,9 @@ * * $RCSfile: navcitem.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:45:03 $ + * last change: $Author: obo $ $Date: 2004-06-04 11:48:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -109,11 +109,11 @@ void __EXPORT ScNavigatorControllerItem::StateChanged( USHORT nSID, SfxItemState ScAddress aScAddress; aScAddress.Parse( aAddress ); - USHORT nCol = aScAddress.Col()+1; - USHORT nRow = aScAddress.Row()+1; + SCCOL nCol = aScAddress.Col()+1; + SCROW nRow = aScAddress.Row()+1; -// USHORT nCol = (USHORT)pCellPosItem->GetValue().X()+1; -// USHORT nRow = (USHORT)pCellPosItem->GetValue().Y()+1; +// SCCOL nCol = (USHORT)pCellPosItem->GetValue().X()+1; +// SCROW nRow = (USHORT)pCellPosItem->GetValue().Y()+1; rNavigatorDlg.UpdateColumn( &nCol ); rNavigatorDlg.UpdateRow ( &nRow ); @@ -132,7 +132,7 @@ void __EXPORT ScNavigatorControllerItem::StateChanged( USHORT nSID, SfxItemState // Tabelle fuer Basic ist 1-basiert if ( pTabItem && pTabItem->GetValue() ) { - USHORT nTab = pTabItem->GetValue() - 1; + SCTAB nTab = pTabItem->GetValue() - 1; rNavigatorDlg.UpdateTable( &nTab ); rNavigatorDlg.UpdateColumn(); |