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>
This commit is contained in:
Caolán McNamara 2020-10-01 20:41:35 +01:00
parent b4ddb579ee
commit 59b3a0413a
2 changed files with 0 additions and 19 deletions

View File

@ -1530,18 +1530,6 @@ sw/source/core/text/txtpaint.hxx:78
DbgRect::DbgRect(class OutputDevice *,const class tools::Rectangle &,const _Bool,class Color)
sw/source/filter/ww8/docxsdrexport.hxx:73
class sax_fastparser::FastAttributeList * DocxSdrExport::getFlyWrapAttrList()
sw/source/uibase/inc/numfmtlb.hxx:130
_Bool SwNumFormatTreeView::get_value_changed_from_saved() const
sw/source/uibase/inc/numfmtlb.hxx:131
void SwNumFormatTreeView::save_value()
sw/source/uibase/inc/numfmtlb.hxx:132
void SwNumFormatTreeView::show()
sw/source/uibase/inc/numfmtlb.hxx:133
void SwNumFormatTreeView::hide()
sw/source/uibase/inc/numfmtlb.hxx:139
void SwNumFormatTreeView::set_sensitive(_Bool)
sw/source/uibase/inc/numfmtlb.hxx:140
void SwNumFormatTreeView::connect_changed(const class Link<class weld::TreeView &, void> &)
sw/source/uibase/inc/swcont.hxx:85
_Bool SwContent::operator==(const class SwContent &) const
test/source/sheet/xsubtotalfield.cxx:28

View File

@ -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