summaryrefslogtreecommitdiffstats
path: root/sc/inc/dociter.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-18 09:08:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-18 09:28:59 +0000
commitc8204ba5b86d080aa5ac3ec71dc6aaea1384b9a0 (patch)
treec4ae951328f359fb4f6fdee62bb0f276a9034579 /sc/inc/dociter.hxx
parentsysui: introspection wants ${INSTDIR}, not ${DESTDIR}/${INSTALLDIR} (diff)
downloadcore-c8204ba5b86d080aa5ac3ec71dc6aaea1384b9a0.tar.gz
core-c8204ba5b86d080aa5ac3ec71dc6aaea1384b9a0.zip
boost->std
Change-Id: I7f3bb094f116103c1146a7d60e3af94c0b37d9ea Reviewed-on: https://gerrit.libreoffice.org/18677 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc/dociter.hxx')
-rw-r--r--sc/inc/dociter.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx
index 49a782e3fe3c..013a6e290956 100644
--- a/sc/inc/dociter.hxx
+++ b/sc/inc/dociter.hxx
@@ -30,11 +30,8 @@
#include <vcl/vclptr.hxx>
#include <memory>
-
#include <set>
#include <vector>
-#include <boost/shared_ptr.hpp>
-#include <boost/scoped_ptr.hpp>
class ScDocument;
class ScPatternAttr;
@@ -271,7 +268,7 @@ class ScQueryCellIterator // walk through all non-empty cells in an ar
typedef sc::CellStoreType::const_position_type PositionType;
PositionType maCurPos;
- boost::scoped_ptr<ScQueryParam> mpParam;
+ std::unique_ptr<ScQueryParam> mpParam;
ScDocument* pDoc;
const ScAttrArray* pAttrArray;
sal_uLong nNumFormat;
@@ -587,7 +584,7 @@ public:
struct TabRanges
{
SCTAB mnTab;
- ::boost::shared_ptr<ScFlatBoolRowSegments> mpRanges;
+ std::shared_ptr<ScFlatBoolRowSegments> mpRanges;
TabRanges(SCTAB nTab);
};