diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-17 18:59:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-17 18:59:32 +0100 |
commit | d030c4a2a54418b17e87f837092a33eae21f0588 (patch) | |
tree | dd80ff3ba78eaa03e98efeb87e9160c6cd7524c5 /sc/inc/chartlis.hxx | |
parent | 558b08d55f69b04eea42a37abd97fbb4dbe3602f (diff) |
revert for mac and win unit case crashes after boost->std
Change-Id: I82c7084f203a834c2d42f9527705288e6036019b
Diffstat (limited to 'sc/inc/chartlis.hxx')
-rw-r--r-- | sc/inc/chartlis.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx index b634b91602e9..8b29b9933d26 100644 --- a/sc/inc/chartlis.hxx +++ b/sc/inc/chartlis.hxx @@ -27,11 +27,12 @@ #include "token.hxx" #include "externalrefmgr.hxx" +#include <vector> + +#include <boost/scoped_ptr.hpp> #include <boost/ptr_container/ptr_map.hpp> -#include <memory> #include <unordered_map> #include <unordered_set> -#include <vector> class ScDocument; class ScChartUnoData; @@ -61,8 +62,8 @@ public: private: - std::unique_ptr<ExternalRefListener> mpExtRefListener; - std::unique_ptr<std::vector<ScTokenRef> > mpTokens; + boost::scoped_ptr<ExternalRefListener> mpExtRefListener; + boost::scoped_ptr<std::vector<ScTokenRef> > mpTokens; OUString maName; ScChartUnoData* pUnoData; |