diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-11-24 07:48:41 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-11-24 18:39:08 +0100 |
commit | f47455e3cfde26f8acd6419be563c027c4755624 (patch) | |
tree | 84ad25368c37c3958770f0c101aa2e43e3f022bf /sc/inc | |
parent | f2931c64d804bf63970bdb9fedf5e57f79a7a3a7 (diff) |
change ScRangeName's container to boost::ptr_map
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/rangenam.hxx | 2 |
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; |