diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-03-13 12:23:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-03-14 08:11:55 +0100 |
commit | ebe1f639cf65c20cee70aa55176bfb67e7b915f7 (patch) | |
tree | 3d80dace017cc053b69a53bfc2cce5ae0cf2f9eb /sw | |
parent | b8d3d4ad0f5bf4f449118214a91219b98ee506c3 (diff) |
loplugin:unusedmethods
Change-Id: I851eba4ca80eac9ee5896df53fbcd0f5ad125763
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112433
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/frmtool.hxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/inc/conttree.hxx | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/sw/source/core/inc/frmtool.hxx b/sw/source/core/inc/frmtool.hxx index 6fbb78fab253..b1cccfd2af4d 100644 --- a/sw/source/core/inc/frmtool.hxx +++ b/sw/source/core/inc/frmtool.hxx @@ -383,7 +383,6 @@ public: const SwAttrSet &GetAttrSet() const { return m_rAttrSet; } const SvxULSpaceItem &GetULSpace() const { return m_rUL; } - const std::shared_ptr<SvxLRSpaceItem>& GetLRSpace() const { return m_rLR; } const SvxBoxItem &GetBox() const { return m_rBox; } const SvxShadowItem &GetShadow() const { return m_rShadow; } diff --git a/sw/source/uibase/inc/conttree.hxx b/sw/source/uibase/inc/conttree.hxx index 95eb75efb6cd..496a7f602858 100644 --- a/sw/source/uibase/inc/conttree.hxx +++ b/sw/source/uibase/inc/conttree.hxx @@ -255,16 +255,6 @@ public: FocusInHdl(*m_xTreeView); } - OUString get_selected_text() const - { - return m_xTreeView->get_selected_text(); - } - - int count_selected_rows() const - { - return m_xTreeView->count_selected_rows(); - } - void set_selection_mode(SelectionMode eMode) { m_xTreeView->set_selection_mode(eMode); |