summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-03 16:03:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-03 21:31:44 +0200
commitfdab8ee608297bb618ae911f46b525d06eb4cac1 (patch)
treee2eedf00df9472c48a0de5f7bd52a45df570c47a /include
parentfdbc12465e468ed50e4562268f44b24a73e22727 (diff)
Resolves: tdf#125105 missing can-focus
Change-Id: I201b658cd0c643fbcaf2ec1411b2a2991eca36dd Reviewed-on: https://gerrit.libreoffice.org/71758 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/txencbox.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/svx/txencbox.hxx b/include/svx/txencbox.hxx
index 0bc69c2a537d..0a69d0a066bf 100644
--- a/include/svx/txencbox.hxx
+++ b/include/svx/txencbox.hxx
@@ -127,6 +127,7 @@ public:
void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xControl->connect_changed(rLink); }
void grab_focus() { m_xControl->grab_focus(); }
void show() { m_xControl->show(); }
+ void hide() { m_xControl->hide(); }
};
class SVX_DLLPUBLIC TextEncodingTreeView
@@ -190,6 +191,7 @@ public:
void connect_row_activated(const Link<weld::TreeView&, void>& rLink) { m_xControl->connect_row_activated(rLink); }
void grab_focus() { m_xControl->grab_focus(); }
void show() { m_xControl->show(); }
+ void hide() { m_xControl->hide(); }
int get_height_rows(int nRows) const
{
return m_xControl->get_height_rows(nRows);