From b804b1a4b484ed3ed33596f914205295369906cd Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 4 Jun 2004 10:17:07 +0000 Subject: INTEGRATION: CWS rowlimit (1.28.202); FILE MERGED 2004/01/21 14:40:08 er 1.28.202.2: RESYNC: (1.28-1.29); FILE MERGED 2004/01/14 12:34:57 er 1.28.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short --- sc/source/ui/Accessibility/AccessibleText.cxx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'sc/source') diff --git a/sc/source/ui/Accessibility/AccessibleText.cxx b/sc/source/ui/Accessibility/AccessibleText.cxx index d036f7b34e0b..7a0dcef61282 100644 --- a/sc/source/ui/Accessibility/AccessibleText.cxx +++ b/sc/source/ui/Accessibility/AccessibleText.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleText.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: vg $ $Date: 2004-01-06 18:57:40 $ + * last change: $Author: obo $ $Date: 2004-06-04 11:17:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -840,8 +840,9 @@ SvxTextForwarder* ScAccessibleCellTextData::GetTextForwarder() if (pEditEngine) DELETEZ( pEditEngine ); - sal_uInt16 nCol, nRow; - EditView* pEditView; + SCCOL nCol; + SCROW nRow; + EditView* pEditView; mpViewShell->GetViewData()->GetEditView( meSplitPos, pEditView, nCol, nRow ); if (pEditView) { @@ -899,7 +900,8 @@ SvxEditViewForwarder* ScAccessibleCellTextData::GetEditViewForwarder( sal_Bool b //#102219#; there should no EditViewForwarder be, because the cell is now readonly in this interface /* if (!mpEditViewForwarder) { - sal_uInt16 nCol, nRow; + SCCOL nCol; + SCROW nRow; EditView* pEditView; mpViewShell->GetViewData()->GetEditView( meSplitPos, pEditView, nCol, nRow ); -- cgit