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/source/ui/dbgui/sfiltdlg.cxx | |
parent | f2931c64d804bf63970bdb9fedf5e57f79a7a3a7 (diff) |
change ScRangeName's container to boost::ptr_map
Diffstat (limited to 'sc/source/ui/dbgui/sfiltdlg.cxx')
-rw-r--r-- | sc/source/ui/dbgui/sfiltdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/sfiltdlg.cxx b/sc/source/ui/dbgui/sfiltdlg.cxx index 37d05b63fc79..14b0372cf515 100644 --- a/sc/source/ui/dbgui/sfiltdlg.cxx +++ b/sc/source/ui/dbgui/sfiltdlg.cxx @@ -176,12 +176,12 @@ void ScSpecialFilterDlg::Init( const SfxItemSet& rArgSet ) sal_uInt16 nInsert = 0; for (; itr != itrEnd; ++itr) { - if (!itr->HasType(RT_CRITERIA)) + if (!itr->second->HasType(RT_CRITERIA)) continue; - nInsert = aLbFilterArea.InsertEntry(itr->GetName()); + nInsert = aLbFilterArea.InsertEntry(itr->second->GetName()); rtl::OUString aSymbol; - itr->GetSymbol(aSymbol); + itr->second->GetSymbol(aSymbol); aLbFilterArea.SetEntryData(nInsert, new String(aSymbol)); } } |