diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-03-26 05:03:52 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-03-26 05:03:52 +0200 |
commit | cb2c9eb114d3a76096fd404d733f86702246b60e (patch) | |
tree | 0cc0e84af616bb7c433035703c769243358d89f2 /sc/source/ui/namedlg/namemgrtable.cxx | |
parent | bd20b48795df0e23ac76d516d56366250157515f (diff) |
prevent update during init in name dlgs, related fdo#45679
Diffstat (limited to 'sc/source/ui/namedlg/namemgrtable.cxx')
-rw-r--r-- | sc/source/ui/namedlg/namemgrtable.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/namedlg/namemgrtable.cxx b/sc/source/ui/namedlg/namemgrtable.cxx index d806d3bcdf6d..6b52369b748e 100644 --- a/sc/source/ui/namedlg/namemgrtable.cxx +++ b/sc/source/ui/namedlg/namemgrtable.cxx @@ -127,6 +127,7 @@ void ScRangeManagerTable::GetLine(ScRangeNameLine& rLine, SvLBoxEntry* pEntry) void ScRangeManagerTable::Init() { + SetUpdateMode(false); Clear(); for (boost::ptr_map<rtl::OUString, ScRangeName>::const_iterator itr = mrRangeMap.begin(); itr != mrRangeMap.end(); ++itr) @@ -147,6 +148,7 @@ void ScRangeManagerTable::Init() } } } + SetUpdateMode(true); } const ScRangeData* ScRangeManagerTable::findRangeData(const ScRangeNameLine& rLine) |