summaryrefslogtreecommitdiffstats
path: root/sc/inc/rangenam.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-24 07:48:41 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-24 18:39:08 +0100
commitf47455e3cfde26f8acd6419be563c027c4755624 (patch)
tree84ad25368c37c3958770f0c101aa2e43e3f022bf /sc/inc/rangenam.hxx
parentManageNames: moving the header separator now updates the table too (diff)
downloadcore-f47455e3cfde26f8acd6419be563c027c4755624.tar.gz
core-f47455e3cfde26f8acd6419be563c027c4755624.zip
change ScRangeName's container to boost::ptr_map
Diffstat (limited to 'sc/inc/rangenam.hxx')
-rw-r--r--sc/inc/rangenam.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx
index 608680e72e6d..4b4f8d93d6f8 100644
--- a/sc/inc/rangenam.hxx
+++ b/sc/inc/rangenam.hxx
@@ -183,7 +183,7 @@ class ScRangeName
{
private:
typedef std::vector<ScRangeData*> IndexDataType;
- typedef ::boost::ptr_set<ScRangeData> DataType;
+ typedef ::boost::ptr_map<rtl::OUString, ScRangeData> DataType;
DataType maData;
IndexDataType maIndexToData;