diff options
author | Michael Stahl <mstahl@redhat.com> | 2018-02-14 14:43:04 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-02-15 15:54:51 +0100 |
commit | 0310430ed0455418cfe85e150f14496aff724897 (patch) | |
tree | 681ecdb2bc85978cd14cfab81fb9805df5ba4e79 /sw/inc | |
parent | c4b23192b4ab1f3ea75df7e48da36b6b17de248b (diff) |
sw: replace DELETEZ with unique_ptr in SwXFrame
Change-Id: I93043bd17a685a82f9365c3eeb27d4288291e2f3
Reviewed-on: https://gerrit.libreoffice.org/49731
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/unoframe.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/unoframe.hxx b/sw/inc/unoframe.hxx index f913fb708cd2..de5c9b8ac71a 100644 --- a/sw/inc/unoframe.hxx +++ b/sw/inc/unoframe.hxx @@ -71,7 +71,7 @@ private: bool bIsDescriptor; OUString m_sName; - SwPaM* m_pCopySource; + std::unique_ptr<SwPaM> m_pCopySource; sal_Int64 m_nDrawAspect; |