diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/finalthreadmanager.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/finalthreadmanager.hxx b/sw/inc/finalthreadmanager.hxx index b1f220b34f8d..009a18e6ab4e 100644 --- a/sw/inc/finalthreadmanager.hxx +++ b/sw/inc/finalthreadmanager.hxx @@ -26,6 +26,7 @@ #include <com/sun/star/util/XJobManager.hpp> #include <com/sun/star/frame/XTerminateListener2.hpp> #include <com/sun/star/uno/XComponentContext.hpp> +#include <o3tl/deleter.hxx> #include <osl/mutex.hxx> #include <list> #include <memory> @@ -76,7 +77,7 @@ private: std::list< css::uno::Reference< css::util::XCancellable > > maThreads; std::unique_ptr<CancelJobsThread> mpCancelJobsThread; TerminateOfficeThread* mpTerminateOfficeThread; - std::unique_ptr<SwPauseThreadStarting> mpPauseThreadStarting; + std::unique_ptr<SwPauseThreadStarting, o3tl::default_delete<SwPauseThreadStarting>> mpPauseThreadStarting; bool mbRegisteredAtDesktop; }; |