diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 17:19:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 18:37:51 +0200 |
commit | b78b143416789307f29bf6e9d06ae49689d9a18f (patch) | |
tree | 21a6af8bb832b2a35b8415ac3f08bf5ab9eb7679 /include/unotools | |
parent | 1467751fd825218a44c735642d5fcb82e661ea4e (diff) |
unotools: std::auto_ptr -> std::unique_ptr
Change-Id: I07d536d0ffdc9e09d8d0799396ad6e6c6909cf45
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/componentresmodule.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unotools/componentresmodule.hxx b/include/unotools/componentresmodule.hxx index 7c586bb326db..ff8bd91adf6b 100644 --- a/include/unotools/componentresmodule.hxx +++ b/include/unotools/componentresmodule.hxx @@ -44,7 +44,7 @@ namespace utl typedef ::comphelper::OModule BaseClass; private: - ::std::auto_ptr< OComponentResModuleImpl > m_pImpl; + ::std::unique_ptr< OComponentResModuleImpl > m_pImpl; public: OComponentResourceModule( const OString& _rResFilePrefix ); |