diff options
-rw-r--r-- | sw/source/uibase/inc/swdtflvr.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/uibase/inc/swdtflvr.hxx b/sw/source/uibase/inc/swdtflvr.hxx index d230f6f21387..4fef3bd1e6c4 100644 --- a/sw/source/uibase/inc/swdtflvr.hxx +++ b/sw/source/uibase/inc/swdtflvr.hxx @@ -25,6 +25,7 @@ #include <vcl/graph.hxx> #include <sfx2/lnkbase.hxx> #include <com/sun/star/embed/XEmbeddedObject.hpp> +#include <o3tl/deleter.hxx> #include <o3tl/typed_flags_set.hxx> #include <svx/swframetypes.hxx> #include <memory> @@ -68,7 +69,7 @@ class SW_DLLPUBLIC SwTransferable : public TransferableHelper /* #96392# Added pCreatorView to distinguish SwFrameShell from SwWrtShell. */ const SwFrameShell *m_pCreatorView; - std::unique_ptr<SwDocFac> m_pClpDocFac; + std::unique_ptr<SwDocFac, o3tl::default_delete<SwDocFac>> m_pClpDocFac; std::unique_ptr<Graphic> m_pClpGraphic; std::unique_ptr<Graphic> m_pClpBitmap; Graphic *m_pOrigGraphic; |