Avoid reserved identifiers

Change-Id: I0505cf418688d568c0c110bc70b2552e2fb8265c
This commit is contained in:
Stephan Bergmann
2016-04-06 12:59:10 +02:00
parent 2a0d0e7e99
commit 308eee791f
2 changed files with 9 additions and 9 deletions

View File

@@ -207,7 +207,7 @@ INSINGLECHAR:
break;
case '{':
if (bNewGroup) // Nesting!
_GetAttrSet();
GetAttrSet_();
bNewGroup = true;
break;
case '}':
@@ -803,7 +803,7 @@ const vcl::Font& SvxRTFParser::GetFont( sal_uInt16 nId )
return *pDfltFont;
}
SvxRTFItemStackType* SvxRTFParser::_GetAttrSet()
SvxRTFItemStackType* SvxRTFParser::GetAttrSet_()
{
SvxRTFItemStackType* pAkt = aAttrStack.empty() ? nullptr : aAttrStack.back();
SvxRTFItemStackType* pNew;
@@ -820,7 +820,7 @@ SvxRTFItemStackType* SvxRTFParser::_GetAttrSet()
}
void SvxRTFParser::_ClearStyleAttr( SvxRTFItemStackType& rStkType )
void SvxRTFParser::ClearStyleAttr_( SvxRTFItemStackType& rStkType )
{
// check attributes to the attributes of the stylesheet or to
// the default attrs of the document
@@ -957,8 +957,8 @@ void SvxRTFParser::AttrGroupEnd() // process the current, delete from Stack
if( IsChkStyleAttr() )
{
_ClearStyleAttr( *pOld );
_ClearStyleAttr( *pNew ); //#i10381#, methinks.
ClearStyleAttr_( *pOld );
ClearStyleAttr_( *pNew ); //#i10381#, methinks.
}
if( pAkt )
@@ -994,7 +994,7 @@ void SvxRTFParser::AttrGroupEnd() // process the current, delete from Stack
redundant properties.
*/
if (IsChkStyleAttr() && !pAkt)
_ClearStyleAttr( *pOld );
ClearStyleAttr_( *pOld );
if( pAkt )
{

View File

@@ -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;
}