summaryrefslogtreecommitdiff
path: root/sc/source/ui/namedlg/namemgrtable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/namedlg/namemgrtable.cxx')
-rw-r--r--sc/source/ui/namedlg/namemgrtable.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/namedlg/namemgrtable.cxx b/sc/source/ui/namedlg/namemgrtable.cxx
index 28adc44a21db..f2b03b11509d 100644
--- a/sc/source/ui/namedlg/namemgrtable.cxx
+++ b/sc/source/ui/namedlg/namemgrtable.cxx
@@ -131,10 +131,10 @@ void ScRangeManagerTable::Init(const boost::ptr_map<rtl::OUString, ScRangeName>&
for (ScRangeName::const_iterator it = pLocalRangeName->begin();
it != pLocalRangeName->end(); ++it)
{
- if (!it->HasType(RT_DATABASE) && !it->HasType(RT_SHARED))
+ if (!it->second->HasType(RT_DATABASE) && !it->second->HasType(RT_SHARED))
{
- aLine.aName = it->GetName();
- it->GetSymbol(aLine.aExpression);
+ aLine.aName = it->second->GetName();
+ it->second->GetSymbol(aLine.aExpression);
addEntry(aLine);
}
}