diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:17:27 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:17:27 +0000 |
commit | eef26a46cd99897416fa31c0f2878b0b8f956348 (patch) | |
tree | 49fec1c2df1b0850ee1e29ade847dddf83f5a254 /sc/source | |
parent | b804b1a4b484ed3ed33596f914205295369906cd (diff) |
INTEGRATION: CWS rowlimit (1.8.302); FILE MERGED
2004/02/20 23:43:56 er 1.8.302.3: #i1967# type correctness
2004/02/11 13:59:46 er 1.8.302.2: RESYNC: (1.8-1.9); FILE MERGED
2004/01/14 13:34:03 er 1.8.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/app/client.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/app/client.cxx b/sc/source/ui/app/client.cxx index 3d6f8a81fbe4..90a06e456229 100644 --- a/sc/source/ui/app/client.cxx +++ b/sc/source/ui/app/client.cxx @@ -2,9 +2,9 @@ * * $RCSfile: client.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2004-02-03 12:33:28 $ + * last change: $Author: obo $ $Date: 2004-06-04 11:17:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -151,8 +151,8 @@ void __EXPORT ScClient::RequestObjAreaPixel( const Rectangle& rObjRect ) pWin->PixelToLogic( aRect.GetSize() ) ); BOOL bChange = FALSE; - USHORT nTab = pViewSh->GetViewData()->GetTabNo(); - SdrPage* pPage = pModel->GetPage(nTab); + SCTAB nTab = pViewSh->GetViewData()->GetTabNo(); + SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(static_cast<sal_Int16>(nTab))); if (pPage) { Point aPos; |