diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-16 10:26:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-16 13:43:28 +0200 |
commit | 5cc423efe304edc20ec92e126bf9ff9e285906b7 (patch) | |
tree | 6f06f1b638bfe5cffb0736d798fa38ab368ddfe7 /include | |
parent | 140d9b832621df291ad58bdb85fd85465b2a6257 (diff) |
move freeze/thaw to Widget
Change-Id: I3944092c26ca81028912f6fb206b148b49e4f172
Reviewed-on: https://gerrit.libreoffice.org/57489
Tested-by: Jenkins
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.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index a7f2ab8d0543..fe391c8e26d4 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; |