diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-17 03:13:23 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-22 10:53:27 +0200 |
commit | 07a7f97b21a02284456e575fe4404f0d216a6723 (patch) | |
tree | cb9926405a7b6113cf5fef9b47cf04c779874c4c /sc/source | |
parent | 0216d0e1ff84ae8ebab3d40bf69bae605264e82b (diff) |
replace one more auto_ptr
Change-Id: I903be81ba3e23c43a481ba775d762c06557942db
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/view/viewfun3.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/ui/view/viewfun3.cxx b/sc/source/ui/view/viewfun3.cxx index a39be5b4ba64..9f091a656406 100644 --- a/sc/source/ui/view/viewfun3.cxx +++ b/sc/source/ui/view/viewfun3.cxx @@ -1615,9 +1615,7 @@ bool ScViewFunc::PasteFromClipToMultiRanges( } } - SAL_WNODEPRECATED_DECLARATIONS_PUSH - std::auto_ptr<ScDocument> pMixDoc; - SAL_WNODEPRECATED_DECLARATIONS_POP + boost::scoped_ptr<ScDocument> pMixDoc; if (bSkipEmpty || nFunction) { if (nFlags & IDF_CONTENTS) |