diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-17 21:01:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-19 12:10:13 +0100 |
commit | 7bf4edd62fd0e34a0bd79cc918155ac5043b091b (patch) | |
tree | 8e82d0dc6609329a5291844d588b0377c252981e /sw/source/uibase/inc/numfmtlb.hxx | |
parent | 62c634d6e8d55f71fa9ebd8c4b78774f8946f39d (diff) |
weld SwFieldDBPage
Change-Id: Ic4919fa3caa2106598ed8da3cec5deffa506eee1
Reviewed-on: https://gerrit.libreoffice.org/69401
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/uibase/inc/numfmtlb.hxx')
-rw-r--r-- | sw/source/uibase/inc/numfmtlb.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/uibase/inc/numfmtlb.hxx b/sw/source/uibase/inc/numfmtlb.hxx index 15749c65ec84..6d120242b18c 100644 --- a/sw/source/uibase/inc/numfmtlb.hxx +++ b/sw/source/uibase/inc/numfmtlb.hxx @@ -87,6 +87,8 @@ public: ~SwNumFormatListBox(); void clear(); + void show() { mxControl->show(); } + void hide() { mxControl->hide(); } void SetFormatType(const SvNumFormatType nFormatType); void SetDefFormat(const sal_uInt32 nDefFormat); @@ -96,6 +98,7 @@ public: void set_sensitive(bool bSensitive) { mxControl->set_sensitive(bSensitive); } void connect_changed(const Link<weld::ComboBox&, void>& rLink) { mxControl->connect_changed(rLink); } + weld::ComboBox& get_widget() const { return *mxControl; } }; #endif |