diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-02-27 16:29:46 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 22:26:09 +0100 |
commit | 562109b8357eb0690034844e097e0acafbdc39b6 (patch) | |
tree | c095810b0daf3b216d6802b02500d1191c1dbece /reportdesign | |
parent | 292990396aefdae15b91f2df395da4b52d5e3f6a (diff) |
vcl: ensure that VclBuilder is disposed before parent window.
Move VclBuilder to use VclPtr, link to documentation, and fix more
double dispose issues.
Change-Id: I4900b69dbb381bd7d6fda97f2a5e623bb58e0a9f
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/Condition.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/reportdesign/source/ui/dlg/Condition.cxx b/reportdesign/source/ui/dlg/Condition.cxx index c5e131a23314..fb86522b68c3 100644 --- a/reportdesign/source/ui/dlg/Condition.cxx +++ b/reportdesign/source/ui/dlg/Condition.cxx @@ -162,6 +162,7 @@ OColorPopup::~OColorPopup() void OColorPopup::dispose() { m_aColorSet.disposeAndClear(); + disposeBuilder(); FloatingWindow::dispose(); } |