From 308eee791f084fe925a993cbda401db3e1211c22 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 6 Apr 2016 12:59:10 +0200 Subject: Avoid reserved identifiers Change-Id: I0505cf418688d568c0c110bc70b2552e2fb8265c --- include/editeng/svxrtf.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/editeng/svxrtf.hxx') 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; } -- cgit