diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-27 10:32:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-28 22:09:59 +0200 |
commit | 208522ddd3fb6b994aacdab10aca45d4e2562207 (patch) | |
tree | 3ac11f2b9bb9a212c26989010f2dd8d8f165aa0d /include/vcl | |
parent | 12800a215102435b16fd0e3028f1fdfe8ebeb090 (diff) |
weld SfxCustomPropertiesPage
Change-Id: I1b1ba1c2b879d270eb3af486a4d006f170d1b92e
Reviewed-on: https://gerrit.libreoffice.org/73111
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/weld.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index af7271037a3b..6a793d59ae65 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -1511,6 +1511,7 @@ public: void set_sensitive(bool sensitive) { m_xSpinButton->set_sensitive(sensitive); } bool get_sensitive() const { return m_xSpinButton->get_sensitive(); } + void set_visible(bool bShow) { m_xSpinButton->set_visible(bShow); } bool get_visible() const { return m_xSpinButton->get_visible(); } void grab_focus() { m_xSpinButton->grab_focus(); } bool has_focus() const { return m_xSpinButton->has_focus(); } |