diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-23 09:49:57 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-24 10:36:20 +0000 |
commit | 38023af6c13602ae1856bea11693c18c0c3efa36 (patch) | |
tree | c17ef3941354f732e2fdd7c3cedb7c649f99e965 /sw | |
parent | 2c6ad5343de947f1646536c539b116346adb8fdc (diff) |
loplugin:unusedmethods
Change-Id: If5090c330e12d6e537766bf4a9be0a2360381a7a
Reviewed-on: https://gerrit.libreoffice.org/17312
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/numrule.hxx | 1 | ||||
-rw-r--r-- | sw/source/core/doc/number.cxx | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/sw/inc/numrule.hxx b/sw/inc/numrule.hxx index 585937dfe188..79aa6fe3711f 100644 --- a/sw/inc/numrule.hxx +++ b/sw/inc/numrule.hxx @@ -53,7 +53,6 @@ class SW_DLLPUBLIC SwNumFormat : public SvxNumberFormat, public SwClient //For i120928,record the cp info of graphic within bullet sal_Unicode cGrfBulletCP; SAL_DLLPRIVATE void UpdateNumNodes( SwDoc* pDoc ); - SAL_DLLPRIVATE virtual void NotifyGraphicArrived() SAL_OVERRIDE; using SvxNumberFormat::operator ==; using SvxNumberFormat::operator !=; diff --git a/sw/source/core/doc/number.cxx b/sw/source/core/doc/number.cxx index 0a22fc1b13d7..3292de9634ce 100644 --- a/sw/source/core/doc/number.cxx +++ b/sw/source/core/doc/number.cxx @@ -224,12 +224,6 @@ SwNumFormat::~SwNumFormat() delete pVertOrient; } -void SwNumFormat::NotifyGraphicArrived() -{ - if( GetCharFormat() ) - UpdateNumNodes( GetCharFormat()->GetDoc() ); -} - // #i22362# bool SwNumFormat::IsEnumeration() const { |