summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/colrowba.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-08-20 08:15:25 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-08-20 08:15:25 +0000
commitdc2abf34e109458bf4feb6cbc25aad8b320a3fb5 (patch)
tree7d8e0ad8ad24984e1262c5ba6de37d68152c7ace /sc/source/ui/view/colrowba.cxx
parent87d48cef01cda75fbe722ef77d7e7452541dc83d (diff)
INTEGRATION: CWS rowlimit2 (1.11.4); FILE MERGED
2004/07/30 16:59:44 er 1.11.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights
Diffstat (limited to 'sc/source/ui/view/colrowba.cxx')
-rw-r--r--sc/source/ui/view/colrowba.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/source/ui/view/colrowba.cxx b/sc/source/ui/view/colrowba.cxx
index b5c8f5a0d297..b8d457b78499 100644
--- a/sc/source/ui/view/colrowba.cxx
+++ b/sc/source/ui/view/colrowba.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: colrowba.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 11:58:57 $
+ * last change: $Author: rt $ $Date: 2004-08-20 09:15:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -299,7 +299,8 @@ USHORT ScRowBar::GetEntrySize( SCCOLROW nEntryNo )
if ( pDoc->GetRowFlags( nEntryNo, nTab ) & CR_HIDDEN )
return 0;
else
- return (USHORT) ScViewData::ToPixel( pDoc->GetRowHeight( nEntryNo, nTab ), pViewData->GetPPTY() );
+ return (USHORT) ScViewData::ToPixel( pDoc->GetOriginalHeight( nEntryNo,
+ nTab ), pViewData->GetPPTY() );
}
String ScRowBar::GetEntryText( SCCOLROW nEntryNo )