diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-01-09 13:38:59 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 20:10:03 +0100 |
commit | 04acdd8db4236e5cd4a89c3ca3e9049ff731b717 (patch) | |
tree | 5afc44058f9c6c48cc8e297bfdbd61c76968b34b /include/vcl/vclmedit.hxx | |
parent | eabaca0cf1382242c6f68084ece93e35cd8fab04 (diff) |
vcl: add dispose implementations & destructor calls.
Change-Id: Iefeaf81d4f7463440a6c5a8abb4d68aa85190698
Diffstat (limited to 'include/vcl/vclmedit.hxx')
-rw-r--r-- | include/vcl/vclmedit.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/vcl/vclmedit.hxx b/include/vcl/vclmedit.hxx index 75f96ed9e65b..034c25412969 100644 --- a/include/vcl/vclmedit.hxx +++ b/include/vcl/vclmedit.hxx @@ -57,8 +57,10 @@ protected: ScrollBar* GetVScrollBar() const; public: - VclMultiLineEdit( vcl::Window* pParent, WinBits nWinStyle = WB_LEFT | WB_BORDER ); - virtual ~VclMultiLineEdit(); + VclMultiLineEdit( vcl::Window* pParent, + WinBits nWinStyle = WB_LEFT | WB_BORDER ); + virtual ~VclMultiLineEdit(); + virtual void dispose() SAL_OVERRIDE; void SelectionChanged(); void CaretChanged(); |