There are no users of this optional argument

Change-Id: I74b4988a3c93e0964580bdd35210b3495365d5b6
This commit is contained in:
Matteo Casalin
2013-09-29 10:45:36 +02:00
parent 8b7bc95275
commit 1b0f6be2d0
2 changed files with 3 additions and 3 deletions

View File

@@ -1527,7 +1527,7 @@ public:
OUString GetUniqueNumRuleName( const OUString* pChkStr = 0, bool bAutoNum = true ) const;
void UpdateNumRule(); /// Update all invalids.
void ChgNumRuleFmts( const SwNumRule& rRule, const String * pOldName = 0 );
void ChgNumRuleFmts( const SwNumRule& rRule );
bool ReplaceNumRule( const SwPosition& rPos, const String& rOldRule,
const String& rNewRule );

View File

@@ -1061,9 +1061,9 @@ bool SwDoc::DelNumRule( const String& rName, bool bBroadcast )
return false;
}
void SwDoc::ChgNumRuleFmts( const SwNumRule& rRule, const String * pName )
void SwDoc::ChgNumRuleFmts( const SwNumRule& rRule )
{
SwNumRule* pRule = FindNumRulePtr( pName ? *pName : String(rRule.GetName()) );
SwNumRule* pRule = FindNumRulePtr( rRule.GetName() );
if( pRule )
{
SwUndoInsNum* pUndo = 0;