summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/docfunc.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/source/ui/inc/docfunc.hxx
parent9939a89c1e39e5c350600b6bea795743ddb780fb (diff)
sc: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I51d87693bdb3d57c36d8cafb851fdad10cd93589
Diffstat (limited to 'sc/source/ui/inc/docfunc.hxx')
-rw-r--r--sc/source/ui/inc/docfunc.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/inc/docfunc.hxx b/sc/source/ui/inc/docfunc.hxx
index 6d9c032f2e2e..2d3864728ece 100644
--- a/sc/source/ui/inc/docfunc.hxx
+++ b/sc/source/ui/inc/docfunc.hxx
@@ -200,7 +200,7 @@ public:
* passed as arguments (it creates copies); the caller is responsible for
* destroying them.
*/
- void ModifyAllRangeNames( const boost::ptr_map<OUString, ScRangeName>& rRangeMap );
+ void ModifyAllRangeNames(const std::map<OUString, std::unique_ptr<ScRangeName>>& rRangeMap);
bool CreateNames( const ScRange& rRange, sal_uInt16 nFlags, bool bApi, SCTAB nTab = -1 ); // -1 for global range names
bool InsertNameList( const ScAddress& rStartPos, bool bApi );