[Libreoffice-commits] .: sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Wed Dec 8 14:53:45 PST 2010
sc/source/filter/excel/xechart.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 0b8c3840ff80a10eec0b8f7a11ff0d32bc19b13d
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Wed Dec 8 17:53:28 2010 -0500
Oops I forgot to pass the iterator position.
diff --git a/sc/source/filter/excel/xechart.cxx b/sc/source/filter/excel/xechart.cxx
index e80081d..38776ad 100644
--- a/sc/source/filter/excel/xechart.cxx
+++ b/sc/source/filter/excel/xechart.cxx
@@ -2430,7 +2430,7 @@ void XclExpChTypeGroup::ConvertSeries(
itr->second = p;
else
// Insert new element.
- maChartLines.insert(XclExpChLineFormatMap::value_type(nKey, p));
+ maChartLines.insert(itr, XclExpChLineFormatMap::value_type(nKey, p));
}
}
else
More information about the Libreoffice-commits
mailing list