summaryrefslogtreecommitdiff
path: root/package/source/xstor/xstorage.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-03-12 18:29:02 +0100
committerMichael Stahl <mstahl@redhat.com>2015-03-12 20:22:13 +0100
commitc3e45f10e003e540710c18967ef9b29210a795e4 (patch)
tree159eee110e6cc59e735c305528fd49b1157522ee /package/source/xstor/xstorage.hxx
parente43d5f26de3c5a366bdb3c5ed83d30e725870855 (diff)
package: convert OStorage::m_pData to std::unique_ptr
Change-Id: I875432aeb98072882df1f228d9fcf43c6027e8d5
Diffstat (limited to 'package/source/xstor/xstorage.hxx')
-rw-r--r--package/source/xstor/xstorage.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx
index d15b39bd86a8..c8688ecf9faf 100644
--- a/package/source/xstor/xstorage.hxx
+++ b/package/source/xstor/xstorage.hxx
@@ -51,6 +51,7 @@
#include "mutexholder.hxx"
#include <list>
+#include <memory>
namespace com { namespace sun { namespace star { namespace uno {
class XComponentContext;
@@ -293,7 +294,7 @@ class OStorage : public ::com::sun::star::lang::XTypeProvider
, public ::cppu::OWeakObject
{
OStorage_Impl* m_pImpl;
- StorInternalData_Impl* m_pData;
+ std::unique_ptr<StorInternalData_Impl> m_pData;
protected: