summaryrefslogtreecommitdiff
path: root/sc/inc/simplerangelist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/simplerangelist.hxx')
-rw-r--r--sc/inc/simplerangelist.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/inc/simplerangelist.hxx b/sc/inc/simplerangelist.hxx
index bf672ea19f12..1fcbefd9d832 100644
--- a/sc/inc/simplerangelist.hxx
+++ b/sc/inc/simplerangelist.hxx
@@ -20,11 +20,12 @@
#ifndef INCLUDED_SC_INC_SIMPLERANGELIST_HXX
#define INCLUDED_SC_INC_SIMPLERANGELIST_HXX
+#include <boost/shared_ptr.hpp>
+
#include "address.hxx"
-#include <list>
#include <map>
-#include <memory>
+#include <list>
class ScRange;
class ScRangeList;
@@ -46,7 +47,7 @@ public:
SCROW mnRow2;
explicit Range(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
};
- typedef std::shared_ptr< ::std::list<Range> > RangeListRef;
+ typedef ::boost::shared_ptr< ::std::list<Range> > RangeListRef;
typedef ::std::map<SCTAB, RangeListRef> TabType;
ScSimpleRangeList();