diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-11 17:41:38 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-11 17:41:38 +0100 |
commit | c6fb78d5fd5f52384f4b959091f50da60ba4b37a (patch) | |
tree | fc51c1c7ee73952f8fd74b6f171f1395d6ee9695 /extensions | |
parent | e9696b975afeae970575cbd6bc782fbba484b2f3 (diff) |
disposeAndClear in place of DELETEZ.
Audit of DELETEZ usage in:
"vclwidget: change all vcl::window fields to be wrapped in VclPtr"
Change-Id: Ib65096a9edb09ce9381ab4a8297d9391d2603651
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/commoncontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/commoncontrol.cxx b/extensions/source/propctrlr/commoncontrol.cxx index fa223eefff64..e337ccf7a0dc 100644 --- a/extensions/source/propctrlr/commoncontrol.cxx +++ b/extensions/source/propctrlr/commoncontrol.cxx @@ -88,7 +88,7 @@ namespace pcr void SAL_CALL ControlHelper::dispose() { - m_pControlWindow.clear(); + m_pControlWindow.disposeAndClear(); } |