diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-13 12:40:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-13 13:28:16 +0200 |
commit | 747a9838ee53a4d2c005729419047b1ffde0db70 (patch) | |
tree | d32ab5e5b6a079e1bf2b1e7ccb012242f48b1316 /sd | |
parent | 32d2e001bb056e7d98aa143b222f2721967337dc (diff) |
loplugin:unusedmethods
Change-Id: I00f228451574ca9f9e352d233c7f326c88e90a95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156892
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/sdtreelb.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx index 712a6ebf3860..1f6026b557d4 100644 --- a/sd/source/ui/inc/sdtreelb.hxx +++ b/sd/source/ui/inc/sdtreelb.hxx @@ -176,15 +176,6 @@ public: bool IsEditingActive() const {return m_bEditing;} - void start_editing() - { - std::unique_ptr<weld::TreeIter> xIter(m_xTreeView->make_iterator()); - if (m_xTreeView->get_cursor(xIter.get())) - { - m_xTreeView->start_editing(*xIter); - } - } - void set_sensitive(bool bSensitive) { m_xTreeView->set_sensitive(bSensitive); |