summaryrefslogtreecommitdiff
path: root/sw/source/core
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-04-23 08:17:48 +0000
committerKurt Zenker <kz@openoffice.org>2004-04-23 08:17:48 +0000
commit963df120731ef2fb77fe96357e5a7716cf39ec1a (patch)
tree823707906e651b49fae4ec0934e1a357de3ea010 /sw/source/core
parent49815ca422e16d65a023fd4e105182e2b8b7d990 (diff)
#i10000# pCell -> _pCell
Diffstat (limited to 'sw/source/core')
-rw-r--r--sw/source/core/layout/tabfrm.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index e6a9c22a58db..d1c74a7bfab8 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tabfrm.cxx,v $
*
- * $Revision: 1.54 $
+ * $Revision: 1.55 $
*
- * last change: $Author: svesik $ $Date: 2004-04-21 11:40:02 $
+ * last change: $Author: kz $ $Date: 2004-04-23 09:17:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -3285,7 +3285,7 @@ SwTwips lcl_CalcTopAndBottomMargin( const SwLayoutFrm& rCell, const SwBorderAttr
SwTwips MA_FASTCALL lcl_CalcMinRowHeight( SwLayoutFrm *pRow );
-SwTwips MA_FASTCALL lcl_CalcMinCellHeight( SwLayoutFrm *pCell,
+SwTwips MA_FASTCALL lcl_CalcMinCellHeight( SwLayoutFrm *_pCell,
const SwBorderAttrs *pAttrs = 0 )
{
SWRECTFN( _pCell )
@@ -3321,12 +3321,12 @@ SwTwips MA_FASTCALL lcl_CalcMinCellHeight( SwLayoutFrm *pCell,
if ( _pCell->Lower() )
{
if ( pAttrs )
- nHeight += lcl_CalcTopAndBottomMargin( *pCell, *pAttrs );
+ nHeight += lcl_CalcTopAndBottomMargin( *_pCell, *pAttrs );
else
{
SwBorderAttrAccess aAccess( SwFrm::GetCache(), _pCell );
const SwBorderAttrs &rAttrs = *aAccess.Get();
- nHeight += lcl_CalcTopAndBottomMargin( *pCell, rAttrs );
+ nHeight += lcl_CalcTopAndBottomMargin( *_pCell, rAttrs );
}
}
return nHeight;