diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-17 21:23:04 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-17 21:23:04 +0100 |
commit | a92cea7e6c07f4f122addd324f6f25616443f3ed (patch) | |
tree | 60827356a79f2319bb2e8cd9d477bc6b6bc85927 /svx/source/dialog | |
parent | 85b01322b6384ae13818c22659b99bfcc94e06fe (diff) |
Windows compilation fixes.
Change-Id: Id04ff9302893654ae1f62db9f5005517c90e5db2
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/frmsel.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx index 8e937fca5906..5897a876200f 100644 --- a/svx/source/dialog/frmsel.cxx +++ b/svx/source/dialog/frmsel.cxx @@ -791,6 +791,11 @@ FrameSelector::FrameSelector(vcl::Window* pParent) EnableRTL( false ); // #107808# don't mirror the mouse handling } +FrameSelector::~FrameSelector() +{ + disposeOnce(); +} + extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeSvxFrameSelector(vcl::Window *pParent, VclBuilder::stringmap &) { return new FrameSelector(pParent); |