summaryrefslogtreecommitdiffstats
path: root/sc/inc/undorangename.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-11-02 18:38:48 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-02 21:11:43 +0100
commitf462cd39b990929bc71615f7f04d561d64c1039d (patch)
treef3a713fe4746846ccb4e2fe3ce3fc6c86d03e2f5 /sc/inc/undorangename.hxx
parentsc: remove unused boost::ptr_map ScRangeName::TabNameMap (diff)
downloadcore-f462cd39b990929bc71615f7f04d561d64c1039d.tar.gz
core-f462cd39b990929bc71615f7f04d561d64c1039d.zip
sc: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I51d87693bdb3d57c36d8cafb851fdad10cd93589
Diffstat (limited to 'sc/inc/undorangename.hxx')
-rw-r--r--sc/inc/undorangename.hxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/sc/inc/undorangename.hxx b/sc/inc/undorangename.hxx
index ba5a93538f29..009c2a13c63f 100644
--- a/sc/inc/undorangename.hxx
+++ b/sc/inc/undorangename.hxx
@@ -12,7 +12,9 @@
#include "undobase.hxx"
#include "rangenam.hxx"
-#include <boost/ptr_container/ptr_map.hpp>
+
+#include <memory>
+#include <map>
class ScDocShell;
@@ -23,8 +25,8 @@ class ScUndoAllRangeNames : public ScSimpleUndo
{
public:
ScUndoAllRangeNames(ScDocShell* pDocSh,
- const std::map<OUString, ScRangeName*>& rOldNames,
- const boost::ptr_map<OUString, ScRangeName>& rNewNames);
+ const std::map<OUString, ScRangeName*>& rOldNames,
+ const std::map<OUString, std::unique_ptr<ScRangeName>>& rNewNames);
virtual ~ScUndoAllRangeNames();
@@ -35,11 +37,11 @@ public:
virtual OUString GetComment() const override;
private:
- void DoChange(const boost::ptr_map<OUString, ScRangeName>& rNames);
+ void DoChange(const std::map<OUString, std::unique_ptr<ScRangeName>>& rNames);
private:
- boost::ptr_map<OUString, ScRangeName> maOldNames;
- boost::ptr_map<OUString, ScRangeName> maNewNames;
+ std::map<OUString, std::unique_ptr<ScRangeName>> m_OldNames;
+ std::map<OUString, std::unique_ptr<ScRangeName>> m_NewNames;
};
class ScUndoAddRangeData : public ScSimpleUndo