diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-26 13:16:18 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 21:52:08 +0100 |
commit | e10b12842eb15b3b9bf577b4da036313fa830786 (patch) | |
tree | 20f22f1e6c950f9d4aff347be40f81d888ed0ad6 /sc/source/ui/miscdlgs/acredlin.cxx | |
parent | 074ef56bb08795bbf85082eab7907dc7f93d48b7 (diff) |
vcl: VclPtr conversion in sc
Change-Id: I9cbc8beff7172c1ec69ae1124b16de0c0d722334
Conflicts:
sc/source/ui/view/gridwin.cxx
sc/source/ui/view/tabview.cxx
Diffstat (limited to 'sc/source/ui/miscdlgs/acredlin.cxx')
-rw-r--r-- | sc/source/ui/miscdlgs/acredlin.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/ui/miscdlgs/acredlin.cxx b/sc/source/ui/miscdlgs/acredlin.cxx index 76363796d8de..1e6b481cd9b5 100644 --- a/sc/source/ui/miscdlgs/acredlin.cxx +++ b/sc/source/ui/miscdlgs/acredlin.cxx @@ -154,6 +154,11 @@ ScAcceptChgDlg::ScAcceptChgDlg(SfxBindings* pB, SfxChildWindow* pCW, vcl::Window ScAcceptChgDlg::~ScAcceptChgDlg() { + dispose(); +} + +void ScAcceptChgDlg::dispose() +{ ClearView(); ScChangeTrack* pChanges=pDoc->GetChangeTrack(); @@ -164,6 +169,7 @@ ScAcceptChgDlg::~ScAcceptChgDlg() } delete m_pAcceptChgCtr; + SfxModelessDialog::dispose(); } void ScAcceptChgDlg::ReInit(ScViewData* ptrViewData) |