diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-03 08:56:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-03 09:42:49 +0200 |
commit | b76842f63b19e9855fbdfee7c201ff73672464b6 (patch) | |
tree | 4f536710463b12facc661a90ddbd5993b538bb6f /editeng/source/rtf/rtfitem.cxx | |
parent | 4dedf654d83ddc22c93d98fe6c7225b8e1e416bd (diff) |
loplugin:unuseddefaultparams in editeng
Change-Id: I1dc0ba262c06bd69cf92aae20b344fe23f460f55
Diffstat (limited to 'editeng/source/rtf/rtfitem.cxx')
-rw-r--r-- | editeng/source/rtf/rtfitem.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/rtf/rtfitem.cxx b/editeng/source/rtf/rtfitem.cxx index ae2eaddc6036..510eba5b6d74 100644 --- a/editeng/source/rtf/rtfitem.cxx +++ b/editeng/source/rtf/rtfitem.cxx @@ -94,10 +94,10 @@ inline const SvxEscapementItem& GetEscapement(const SfxItemSet& rSet,sal_uInt16 inline const SvxLineSpacingItem& GetLineSpacing(const SfxItemSet& rSet,sal_uInt16 nId,bool bInP=true) { return static_cast<const SvxLineSpacingItem&>(rSet.Get( nId,bInP)); } // frm -inline const SvxLRSpaceItem& GetLRSpace(const SfxItemSet& rSet,sal_uInt16 nId,bool bInP=true) - { return static_cast<const SvxLRSpaceItem&>(rSet.Get( nId,bInP)); } -inline const SvxULSpaceItem& GetULSpace(const SfxItemSet& rSet,sal_uInt16 nId,bool bInP=true) - { return static_cast<const SvxULSpaceItem&>(rSet.Get( nId,bInP)); } +inline const SvxLRSpaceItem& GetLRSpace(const SfxItemSet& rSet,sal_uInt16 nId) + { return static_cast<const SvxLRSpaceItem&>(rSet.Get( nId)); } +inline const SvxULSpaceItem& GetULSpace(const SfxItemSet& rSet,sal_uInt16 nId) + { return static_cast<const SvxULSpaceItem&>(rSet.Get( nId)); } void SvxRTFParser::SetScriptAttr( RTF_CharTypeDef eType, SfxItemSet& rSet, SfxPoolItem& rItem ) |