diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 19:03:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 19:27:55 +0100 |
commit | 38d9e38981a8ade60bb627b00197ecd28fb9158e (patch) | |
tree | 85573acca3fe6eaf6ce9b3173a0dc3cdf30845f3 /extensions | |
parent | 1376f86f3fdfb80008687d8b5e8db2b5434b9d7e (diff) |
loplugin:unusedfields
Change-Id: Ib2314f23efe953398ed0a5e88305842c812e18bb
Reviewed-on: https://gerrit.libreoffice.org/85708
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/browserpage.hxx | 4 | ||||
-rw-r--r-- | extensions/source/propctrlr/propertyeditor.cxx | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/extensions/source/propctrlr/browserpage.hxx b/extensions/source/propctrlr/browserpage.hxx index 8ab95cb17115..dd8c44f2e583 100644 --- a/extensions/source/propctrlr/browserpage.hxx +++ b/extensions/source/propctrlr/browserpage.hxx @@ -33,15 +33,11 @@ namespace pcr std::unique_ptr<weld::Container> m_xContainer; std::unique_ptr<OBrowserListBox> m_xListBox; - OUString m_aPageTitle; - public: // TODO inherit from BuilderPage explicit OBrowserPage(weld::Container* pParent, weld::Container* pContainer); ~OBrowserPage(); - void SetPageTitle(const OUString& rPageTitle) { m_aPageTitle = rPageTitle; } - void SetHelpId(const OString& rHelpId) { m_xContainer->set_help_id(rHelpId); } OBrowserListBox& getListBox() { return *m_xListBox; } diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx index e102a4de21a8..9a38153cd44d 100644 --- a/extensions/source/propctrlr/propertyeditor.cxx +++ b/extensions/source/propctrlr/propertyeditor.cxx @@ -127,7 +127,6 @@ namespace pcr // create a new page auto xPage = std::make_unique<OBrowserPage>(m_xTabControl->get_page(sIdent), m_xControlHoldingParent.get()); - xPage->SetPageTitle(rText); // some knittings xPage->getListBox().SetListener(m_pListener); xPage->getListBox().SetObserver(m_pObserver); |