diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 11:50:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 18:39:07 +0100 |
commit | 2b3ece8b2e22b42dd3e80a691a4a492837f7996b (patch) | |
tree | 706b89865286d9dfbe3f842fdc4b84d1ff22b1fd /editeng/source | |
parent | 03685b1ab86a9b8d78ad2a4fd460c2aaa50f03ab (diff) |
rename Get/SetPropTextFirstLineOfst -> Get/SetPropTextFirstLineOffset
Change-Id: Ib963dccf0f803534c741eacc31a44dc5c90889fb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87958
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index 9530ce4423cc..74d6dbdc563c 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -401,7 +401,7 @@ bool SvxLRSpaceItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) nPropLeftMargin = aLRSpace.ScaleLeft; nPropRightMargin = aLRSpace.ScaleRight; SetTextFirstLineOffset(static_cast<short>(bConvert ? convertMm100ToTwip(aLRSpace.FirstLine) : aLRSpace.FirstLine)); - SetPropTextFirstLineOfst ( static_cast<sal_uInt16>(aLRSpace.ScaleFirstLine) ); + SetPropTextFirstLineOffset ( static_cast<sal_uInt16>(aLRSpace.ScaleFirstLine) ); SetAutoFirst( aLRSpace.AutoFirstLine ); break; } @@ -436,7 +436,7 @@ bool SvxLRSpaceItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) break; case MID_FIRST_LINE_REL_INDENT: - SetPropTextFirstLineOfst ( static_cast<sal_uInt16>(nVal) ); + SetPropTextFirstLineOffset ( static_cast<sal_uInt16>(nVal) ); break; case MID_FIRST_AUTO: @@ -472,7 +472,7 @@ bool SvxLRSpaceItem::operator==( const SfxPoolItem& rAttr ) const nTxtLeft == rOther.GetTextLeft() && nLeftMargin == rOther.GetLeft() && nRightMargin == rOther.GetRight() && - nPropFirstLineOfst == rOther.GetPropTextFirstLineOfst() && + nPropFirstLineOfst == rOther.GetPropTextFirstLineOffset() && nPropLeftMargin == rOther.GetPropLeft() && nPropRightMargin == rOther.GetPropRight() && bAutoFirst == rOther.IsAutoFirst() && |