summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-07-16 10:26:19 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-07-19 12:13:34 +0200
commit337012970f62a8a40da2a02806363b560cf295df (patch)
treecb440cd82c1135a7fad59e46dd7084b2d14db1ed /include
parentde607309e27616a9e53eadee2bab9cd0de74cae3 (diff)
move freeze/thaw to Widget
Change-Id: I3944092c26ca81028912f6fb206b148b49e4f172 Reviewed-on: https://gerrit.libreoffice.org/57495 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/weld.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 39ee0c867886..5cb39276ea62 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -103,6 +103,9 @@ public:
virtual bool get_direction() const = 0;
virtual void set_direction(bool bRTL) = 0;
+ virtual void freeze() = 0;
+ virtual void thaw() = 0;
+
virtual Container* weld_parent() const = 0;
virtual ~Widget() {}
@@ -277,9 +280,6 @@ public:
virtual bool get_entry_selection_bounds(int& rStartPos, int& rEndPos) = 0;
virtual void set_entry_completion(bool bEnable) = 0;
- virtual void freeze() = 0;
- virtual void thaw() = 0;
-
void connect_entry_activate(const Link<ComboBoxText&, void>& rLink)
{
m_aEntryActivateHdl = rLink;
@@ -313,9 +313,6 @@ public:
virtual void clear() = 0;
virtual int get_height_rows(int nRows) const = 0;
- virtual void freeze() = 0;
- virtual void thaw() = 0;
-
virtual void set_selection_mode(bool bMultiple) = 0;
virtual int count_selected_rows() const = 0;