summaryrefslogtreecommitdiff
path: root/sw/source/core/table/swtable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/table/swtable.cxx')
-rw-r--r--sw/source/core/table/swtable.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/table/swtable.cxx b/sw/source/core/table/swtable.cxx
index 14767b6e6f13..69f7429715ff 100644
--- a/sw/source/core/table/swtable.cxx
+++ b/sw/source/core/table/swtable.cxx
@@ -1578,8 +1578,8 @@ SwTwips SwTableLine::GetTableLineHeight( bool& bLayoutAvailable ) const
{
const SwTabFrame* pTab = pLast->FindTabFrame();
bLayoutAvailable = ( pTab && pTab->IsVertical() ) ?
- ( 0 < pTab->Frame().Height() ) :
- ( 0 < pTab->Frame().Width() );
+ ( 0 < pTab->getSwFrame().Height() ) :
+ ( 0 < pTab->getSwFrame().Width() );
// The first one defines the chain, if a chain is defined, only members of the chain
// will be added.
@@ -1587,9 +1587,9 @@ SwTwips SwTableLine::GetTableLineHeight( bool& bLayoutAvailable ) const
{
pChain = pTab; // defines my chain (even it is already)
if( pTab->IsVertical() )
- nRet += pLast->Frame().Width();
+ nRet += pLast->getSwFrame().Width();
else
- nRet += pLast->Frame().Height();
+ nRet += pLast->getSwFrame().Height();
// Optimization, if there are no master/follows in my chain, nothing more to add
if( !pTab->HasFollow() && !pTab->IsFollow() )
break;
@@ -2707,7 +2707,7 @@ SwRect SwTableCellInfo::getRect() const
SwRect aRet;
if (getCellFrame() != nullptr)
- aRet = getCellFrame()->Frame();
+ aRet = getCellFrame()->getSwFrame();
return aRet;
}