diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-10-01 20:41:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-10-02 09:43:06 +0200 |
commit | 59b3a0413a742f86078da4772b2a5f4cc83e9e3c (patch) | |
tree | 207690456f267d218781f8ee51ac8bc09c7f070f /sw | |
parent | b4ddb579eeafbcf0fd7edd346401b31d00c0aa7b (diff) |
drop these unused inlines
Change-Id: I566be7eaf2ee73d3dac8c137ba783eea960cb586
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103778
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/inc/numfmtlb.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sw/source/uibase/inc/numfmtlb.hxx b/sw/source/uibase/inc/numfmtlb.hxx index 1fedd19c1157..a5776659130a 100644 --- a/sw/source/uibase/inc/numfmtlb.hxx +++ b/sw/source/uibase/inc/numfmtlb.hxx @@ -127,17 +127,10 @@ public: virtual void set_id(int nPos, const OUString& rId) override { mxControl->set_id(nPos, rId); } OUString get_selected_text() const { return mxControl->get_selected_text(); } bool get_visible() const { return mxControl->get_visible(); } - bool get_value_changed_from_saved() const { return mxControl->get_value_changed_from_saved(); } - void save_value() { return mxControl->save_value(); } - void show() { mxControl->show(); } - void hide() { mxControl->hide(); } int get_selected_index() const { return mxControl->get_selected_index(); } void set_visible(bool bVisible) { mxControl->set_visible(bVisible); } void select(int nPos) { mxControl->select(nPos); } void connect_row_activated(const Link<weld::TreeView&, bool>& rLink) { mxControl->connect_row_activated(rLink); } - - void set_sensitive(bool bSensitive) { mxControl->set_sensitive(bSensitive); } - void connect_changed(const Link<weld::TreeView&, void>& rLink) { mxControl->connect_changed(rLink); } }; #endif |