summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-23 09:02:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-03-23 11:38:59 +0100
commit144bc302b8e610422f0bdbfceb1726822454dfbc (patch)
tree4660125a5d427f934cccd19fc316781dd5c64286 /include
parent8d4164997f4e9bf8a808d9e64fbf77248b704620 (diff)
add set editable support
Change-Id: I4ec9d3de426f760c38600d4960e2d37a3be8a9bb Reviewed-on: https://gerrit.libreoffice.org/51768 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/weld.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 88c53b7e2336..0cdf21d06ed4 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -330,6 +330,7 @@ public:
virtual void set_max_length(int nChars) = 0;
virtual void select_region(int nStartPos, int nEndPos) = 0;
virtual void set_position(int nCursorPos) = 0;
+ virtual void set_editable(bool bEditable) = 0;
void connect_changed(const Link<Entry&, void>& rLink) { m_aChangeHdl = rLink; }