diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 14:12:00 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 20:55:20 +0000 |
commit | c376ecbc9614ccaa4f4392c287d0d1c731c3aa77 (patch) | |
tree | 68b0bec31db1520f8c65402aa3a842b691f03a60 /svx | |
parent | 7e6205117d535905b46c0106e66e5e3b593ee813 (diff) |
Realy->Really
that's really bugging me
Change-Id: Id15bd4dc42748b3cb24eb891741195499c5df9c3
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdotext.cxx | 3 | ||||
-rw-r--r-- | svx/source/table/svdotable.cxx | 14 | ||||
-rw-r--r-- | svx/source/unodraw/unoshtxt.cxx | 2 |
3 files changed, 4 insertions, 15 deletions
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx index 4ef80f611d27..d15e64201867 100644 --- a/svx/source/svdraw/svdotext.cxx +++ b/svx/source/svdraw/svdotext.cxx @@ -1759,12 +1759,11 @@ void SdrTextObj::TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const b } } -bool SdrTextObj::IsRealyEdited() const +bool SdrTextObj::IsReallyEdited() const { return pEdtOutl && pEdtOutl->IsModified(); } - // moved inlines here form hxx long SdrTextObj::GetEckenradius() const diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx index 961790459695..ce05325b05bf 100644 --- a/svx/source/table/svdotable.cxx +++ b/svx/source/table/svdotable.cxx @@ -693,7 +693,7 @@ void SdrTableObjImpl::LayoutTable( Rectangle& rArea, bool bFitWidth, bool bFitHe // Optimization: SdrTableObj::SetChanged() can call this very often, repeatedly // with the same settings, noticeably increasing load time. Skip if already done. bool bInteractiveMightGrowBecauseTextChanged = - mpTableObj->IsRealyEdited() && (mpTableObj->IsAutoGrowHeight() || mpTableObj->IsAutoGrowHeight()); + mpTableObj->IsReallyEdited() && (mpTableObj->IsAutoGrowHeight() || mpTableObj->IsAutoGrowHeight()); WritingMode writingMode = mpTableObj->GetWritingMode(); if( bInteractiveMightGrowBecauseTextChanged || lastLayoutTable != this || lastLayoutInputRectangle != rArea @@ -2097,8 +2097,6 @@ bool SdrTableObj::TRGetBaseGeometry(basegfx::B2DHomMatrix& rMatrix, basegfx::B2D return SdrTextObj::TRGetBaseGeometry( rMatrix, rPolyPolygon ); } - - // sets the base geometry of the object using infos contained in the homogen 3x3 matrix. // If it's an SdrPathObj it will use the provided geometry information. The Polygon has // to use (0,0) as upper left and will be scaled to the given size in the matrix. @@ -2107,22 +2105,16 @@ void SdrTableObj::TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const SdrTextObj::TRSetBaseGeometry( rMatrix, rPolyPolygon ); } - - -bool SdrTableObj::IsRealyEdited() const +bool SdrTableObj::IsReallyEdited() const { return pEdtOutl && pEdtOutl->IsModified(); } - - bool SdrTableObj::IsFontwork() const { return false; } - - sal_uInt32 SdrTableObj::GetHdlCount() const { sal_uInt32 nCount = SdrTextObj::GetHdlCount(); @@ -2135,8 +2127,6 @@ sal_uInt32 SdrTableObj::GetHdlCount() const return nCount; } - - void SdrTableObj::AddToHdlList(SdrHdlList& rHdlList) const { const sal_Int32 nRowCount = mpImpl->getRowCount(); diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx index 0c164abe9eba..07e516832a7a 100644 --- a/svx/source/unodraw/unoshtxt.cxx +++ b/svx/source/unodraw/unoshtxt.cxx @@ -643,7 +643,7 @@ SvxTextForwarder* SvxTextEditSourceImpl::GetBackgroundTextForwarder() mpOutliner->SetText( *pOutlinerParaObject ); // #91254# put text to object and set EmptyPresObj to FALSE - if( mpText && bOwnParaObj && pOutlinerParaObject && mpObject->IsEmptyPresObj() && pTextObj->IsRealyEdited() ) + if( mpText && bOwnParaObj && pOutlinerParaObject && mpObject->IsEmptyPresObj() && pTextObj->IsReallyEdited() ) { mpObject->SetEmptyPresObj( false ); static_cast< SdrTextObj* >( mpObject)->NbcSetOutlinerParaObjectForText( pOutlinerParaObject, mpText ); |