diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 17:26:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 17:51:30 +0200 |
commit | 89c72084b23b14780d0799f2f2f32c579212f497 (patch) | |
tree | 5d7aceedbe6be23b302c382e14d5148d460b0b89 /sc/inc/macromgr.hxx | |
parent | 741629f48a3fe72fb1e9fb68077446907585e852 (diff) |
sc: std::auto_ptr -> std::unique_ptr
Change-Id: I25468d578de597ff9aeba3ffc850c630fa532767
Diffstat (limited to 'sc/inc/macromgr.hxx')
-rw-r--r-- | sc/inc/macromgr.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/macromgr.hxx b/sc/inc/macromgr.hxx index ecbf08f30c0a..fbf78ae50e47 100644 --- a/sc/inc/macromgr.hxx +++ b/sc/inc/macromgr.hxx @@ -42,7 +42,7 @@ private: NameBoolMap mhFuncToVolatile; com::sun::star::uno::Reference< com::sun::star::container::XContainerListener > mxContainerListener; - ::std::auto_ptr<ScUserMacroDepTracker> mpDepTracker; + ::std::unique_ptr<ScUserMacroDepTracker> mpDepTracker; ScDocument* mpDoc; }; |