summaryrefslogtreecommitdiff
path: root/include/editeng/svxrtf.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-06 12:59:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-06 12:59:10 +0200
commit308eee791f084fe925a993cbda401db3e1211c22 (patch)
tree6a94d65a906a6826a9785b372e2451650e9a5ba6 /include/editeng/svxrtf.hxx
parent2a0d0e7e9940173f32092cd93c900449fe4d50eb (diff)
Avoid reserved identifiers
Change-Id: I0505cf418688d568c0c110bc70b2552e2fb8265c
Diffstat (limited to 'include/editeng/svxrtf.hxx')
-rw-r--r--include/editeng/svxrtf.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx
index 081eaf7e5af5..66c3c548408c 100644
--- a/include/editeng/svxrtf.hxx
+++ b/include/editeng/svxrtf.hxx
@@ -223,8 +223,8 @@ class EDITENG_DLLPUBLIC SvxRTFParser : public SvRTFParser
void ClearStyleTbl();
void ClearAttrStack();
- SvxRTFItemStackType* _GetAttrSet(); // Create new ItemStackType:s
- void _ClearStyleAttr( SvxRTFItemStackType& rStkType );
+ SvxRTFItemStackType* GetAttrSet_(); // Create new ItemStackType:s
+ void ClearStyleAttr_( SvxRTFItemStackType& rStkType );
// Sets all the attributes that are different from the current
void SetAttrSet( SvxRTFItemStackType &rSet );
@@ -393,7 +393,7 @@ inline SfxItemSet& SvxRTFParser::GetAttrSet()
{
SvxRTFItemStackType* pTmp;
if( bNewGroup || nullptr == ( pTmp = aAttrStack.empty() ? nullptr : aAttrStack.back()) )
- pTmp = _GetAttrSet();
+ pTmp = GetAttrSet_();
return pTmp->aAttrSet;
}