coverity#1424266 Uncaught exception

Change-Id: I63b04fba25b09753baa1dd1cac18f44860cdb264
Reviewed-on: https://gerrit.libreoffice.org/45581
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Caolán McNamara 2017-11-30 09:55:13 +00:00
parent 9310a64bbe
commit 18a7a5859b

View file

@ -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;