summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-01 17:11:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-02 13:52:07 +0200
commit87e33c3c1c481ee38d03f66412374cd9bd2d76cb (patch)
tree0df38a0e381c5284dc7963ab135108d09ee49658 /sfx2/inc
parent3ee5c24a03516892dfc58b4fe1211b21562b6cec (diff)
drop some unused methods
Change-Id: I4da391591d30db9e51c1dd543bcf128f2e8621c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101914 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/autoredactdialog.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/sfx2/inc/autoredactdialog.hxx b/sfx2/inc/autoredactdialog.hxx
index d43d88e774b1..1410d75dd44d 100644
--- a/sfx2/inc/autoredactdialog.hxx
+++ b/sfx2/inc/autoredactdialog.hxx
@@ -64,13 +64,9 @@ class TargetsTable
public:
TargetsTable(std::unique_ptr<weld::TreeView> xControl);
void InsertTarget(RedactionTarget* pTarget);
- void SelectByName(const OUString& sName);
RedactionTarget* GetTargetByName(const OUString& sName);
OUString GetNameProposal() const;
- void unselect_all() { m_xControl->unselect_all(); }
- bool has_focus() const { return m_xControl->has_focus(); }
- int n_children() const { return m_xControl->n_children(); }
int get_selected_index() const { return m_xControl->get_selected_index(); }
std::vector<int> get_selected_rows() const { return m_xControl->get_selected_rows(); }
void clear() { m_xControl->clear(); }
@@ -80,9 +76,6 @@ public:
// Sync data on the targets box with the data on the target
void setRowData(int nRowIndex, const RedactionTarget* pTarget);
-
- //void connect_changed(const Link<weld::TreeView&, void>& rLink) { m_xControl->connect_changed(rLink); }
- //void connect_row_activated(const Link<weld::TreeView&, void>& rLink) { m_xControl->connect_row_activated(rLink); }
};
namespace sfx2