summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-29 17:19:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-29 18:37:51 +0200
commitb78b143416789307f29bf6e9d06ae49689d9a18f (patch)
tree21a6af8bb832b2a35b8415ac3f08bf5ab9eb7679 /include
parent1467751fd825218a44c735642d5fcb82e661ea4e (diff)
unotools: std::auto_ptr -> std::unique_ptr
Change-Id: I07d536d0ffdc9e09d8d0799396ad6e6c6909cf45
Diffstat (limited to 'include')
-rw-r--r--include/unotools/componentresmodule.hxx2
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 );