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, 3 insertions, 4 deletions
diff --git a/sc/inc/simplerangelist.hxx b/sc/inc/simplerangelist.hxx
index 1fcbefd9d832..bf672ea19f12 100644
--- a/sc/inc/simplerangelist.hxx
+++ b/sc/inc/simplerangelist.hxx
@@ -20,12 +20,11 @@
#ifndef INCLUDED_SC_INC_SIMPLERANGELIST_HXX
#define INCLUDED_SC_INC_SIMPLERANGELIST_HXX
-#include <boost/shared_ptr.hpp>
-
#include "address.hxx"
-#include <map>
#include <list>
+#include <map>
+#include <memory>
class ScRange;
class ScRangeList;
@@ -47,7 +46,7 @@ public:
SCROW mnRow2;
explicit Range(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
};
- typedef ::boost::shared_ptr< ::std::list<Range> > RangeListRef;
+ typedef std::shared_ptr< ::std::list<Range> > RangeListRef;
typedef ::std::map<SCTAB, RangeListRef> TabType;
ScSimpleRangeList();