diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 09:56:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 09:57:16 +0200 |
commit | eba71a4937036bd2e1101a060a28a1ec45f702bf (patch) | |
tree | ecf338be85d303e0b774dc80169a775bd2bb6abe /sfx2/source/doc/Metadatable.cxx | |
parent | e653fbfbfa41ec46431b84e50ac6f054e8713601 (diff) |
sfx2: std::auto_ptr -> std::unique_ptr
Change-Id: I7bac4105494cdbbadd4c4d78ce1fcf03b8ccae6c
Diffstat (limited to 'sfx2/source/doc/Metadatable.cxx')
-rw-r--r-- | sfx2/source/doc/Metadatable.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/doc/Metadatable.cxx b/sfx2/source/doc/Metadatable.cxx index c54e3e82586e..c82336f9d4bf 100644 --- a/sfx2/source/doc/Metadatable.cxx +++ b/sfx2/source/doc/Metadatable.cxx @@ -251,7 +251,7 @@ private: const OUString & i_rIdref) const SAL_OVERRIDE; struct XmlIdRegistry_Impl; - ::std::auto_ptr<XmlIdRegistry_Impl> m_pImpl; + ::std::unique_ptr<XmlIdRegistry_Impl> m_pImpl; }; // MetadatableUndo --------------------------------------------------- @@ -343,7 +343,7 @@ private: const bool i_isInContent); struct XmlIdRegistry_Impl; - ::std::auto_ptr<XmlIdRegistry_Impl> m_pImpl; + ::std::unique_ptr<XmlIdRegistry_Impl> m_pImpl; }; |