diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-19 14:06:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-20 08:42:30 +0200 |
commit | a0aff40f3e0c91aaae51802bca4b6b77f18ae848 (patch) | |
tree | b3dd35b612a1697d3ebf1fce744e2e2ed906c924 /cui | |
parent | 6c5fdc30851f261ad8f70cb23ead82c4cbe46bb8 (diff) |
unused sNumCharFmtName fields
ever since
commit 89ef4dea325a11c706ff9619ff4717124260f864
Date: Fri Jul 17 10:34:58 2015 +0200
loplugin:unusedmethods cui
Change-Id: Ibfa3841168448d4f08075a684fa36262b303210f
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/numpages.hxx | 6 | ||||
-rw-r--r-- | cui/source/tabpages/numpages.cxx | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx index 7b12d8d00879..68d63f72e8da 100644 --- a/cui/source/inc/numpages.hxx +++ b/cui/source/inc/numpages.hxx @@ -87,15 +87,14 @@ class SvxSingleNumPickTabPage : public SfxTabPage using TabPage::ActivatePage; using TabPage::DeactivatePage; - VclPtr<SvxNumValueSet> m_pExamplesVS; + VclPtr<SvxNumValueSet> m_pExamplesVS; SvxNumSettingsArr_Impl aNumSettingsArr; SvxNumRule* pActNum; SvxNumRule* pSaveNum; - sal_uInt16 nActNumLvl; + sal_uInt16 nActNumLvl; bool bModified : 1; bool bPreset : 1; - OUString sNumCharFmtName; sal_uInt16 nNumItemId; protected: @@ -209,7 +208,6 @@ class SvxBitmapPickTabPage : public SfxTabPage VclPtr<Button> m_pBtBrowseFile; std::vector<OUString> aGrfNames; - OUString sNumCharFmtName; SvxNumRule* pActNum; SvxNumRule* pSaveNum; diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index a50dba3c49e4..0a3f2857c39c 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -349,7 +349,7 @@ IMPL_LINK_NOARG(SvxSingleNumPickTabPage, NumSelectHdl_Impl, ValueSet*, void) aFmt.SetSuffix( "" ); else aFmt.SetSuffix(_pSet->sSuffix); - aFmt.SetCharFormatName(sNumCharFmtName); + aFmt.SetCharFormatName(""); aFmt.SetBulletRelSize(100); pActNum->SetLevel(i, aFmt); } @@ -957,7 +957,7 @@ IMPL_LINK_NOARG(SvxBitmapPickTabPage, NumSelectHdl_Impl, ValueSet*, void) aFmt.SetNumberingType(SVX_NUM_BITMAP); aFmt.SetPrefix( "" ); aFmt.SetSuffix( "" ); - aFmt.SetCharFormatName( sNumCharFmtName ); + aFmt.SetCharFormatName( "" ); Graphic aGraphic; if(GalleryExplorer::GetGraphicObj( GALLERY_THEME_BULLETS, nIdx, &aGraphic)) |