diff options
-rw-r--r-- | sd/source/ui/inc/ViewShell.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx index d94376e1764e..f65c5e31af60 100644 --- a/sd/source/ui/inc/ViewShell.hxx +++ b/sd/source/ui/inc/ViewShell.hxx @@ -32,6 +32,7 @@ #include <sddllapi.h> #include <com/sun/star/drawing/XDrawSubController.hpp> +#include <o3tl/deleter.hxx> #include <memory> class SdPage; @@ -486,7 +487,7 @@ protected: /// The type of the shell. Returned by GetShellType(). ShellType meShellType; - ::std::unique_ptr<Implementation> mpImpl; + std::unique_ptr<Implementation, o3tl::default_delete<Implementation>> mpImpl; // Support methods for centralized UNDO/REDO virtual ::svl::IUndoManager* ImpGetUndoManager() const; |