diff options
Diffstat (limited to 'include/ucbhelper/contenthelper.hxx')
-rw-r--r-- | include/ucbhelper/contenthelper.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ucbhelper/contenthelper.hxx b/include/ucbhelper/contenthelper.hxx index 20b15c71f8aa..91cf9934ae94 100644 --- a/include/ucbhelper/contenthelper.hxx +++ b/include/ucbhelper/contenthelper.hxx @@ -38,6 +38,7 @@ #include <rtl/ref.hxx> #include <ucbhelper/macros.hxx> #include <ucbhelper/ucbhelperdllapi.h> +#include <memory> namespace com { namespace sun { namespace star { namespace ucb { struct CommandInfo; @@ -96,7 +97,7 @@ class UCBHELPER_DLLPUBLIC ContentImplHelper : friend class PropertySetInfo; friend class CommandProcessorInfo; - ucbhelper_impl::ContentImplHelper_Impl* m_pImpl; + std::unique_ptr<ucbhelper_impl::ContentImplHelper_Impl> m_pImpl; protected: osl::Mutex m_aMutex; |