summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-14 16:23:38 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-14 17:19:00 -0500
commit8bbfedd199deedb8dc7f196efba60c8cefb8da67 (patch)
treecedcf31585318a9566884f94466facdd0b195333 /sc
parentfe7b2a4bec8bf4d3b07a156e019a82f8ba9cf68e (diff)
auto_ptr to scoped_ptr.
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/xlpivot.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/source/filter/inc/xlpivot.hxx b/sc/source/filter/inc/xlpivot.hxx
index f162f8f7f18a..bed377d1b941 100644
--- a/sc/source/filter/inc/xlpivot.hxx
+++ b/sc/source/filter/inc/xlpivot.hxx
@@ -41,7 +41,8 @@
#include "xladdress.hxx"
#include "dpobject.hxx"
-#include <memory>
+#include <boost/noncopyable.hpp>
+#include <boost/scoped_ptr.hpp>
class XclImpStream;
class XclExpStream;
@@ -637,9 +638,7 @@ struct XclPTFieldExtInfo
sal_uInt16 mnSortField; /// Index to data field sorting bases on.
sal_uInt16 mnShowField; /// Index to data field AutoShow bases on.
sal_uInt16 mnNumFmt;
- SAL_WNODEPRECATED_DECLARATIONS_PUSH
- ::std::auto_ptr<rtl::OUString> mpFieldTotalName;
- SAL_WNODEPRECATED_DECLARATIONS_POP
+ boost::scoped_ptr<rtl::OUString> mpFieldTotalName;
explicit XclPTFieldExtInfo();