From 8627b0a297d6a2b7461bb53da2f434c397cb2603 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Tue, 27 Mar 2012 23:03:03 +0400 Subject: there was Table::Insert, let's use map::insert as a replacement --- sc/source/core/tool/chartpos.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') diff --git a/sc/source/core/tool/chartpos.cxx b/sc/source/core/tool/chartpos.cxx index bae4802a33fa..cdc27f64b6ca 100644 --- a/sc/source/core/tool/chartpos.cxx +++ b/sc/source/core/tool/chartpos.cxx @@ -475,7 +475,7 @@ void ScChartPositioner::CreatePositionMap() { sal_uLong nKey = it1->first; for (ColumnMap::const_iterator it2 = ++pCols->begin(); it2 != pCols->end(); ++it2 ) - (*it2->second)[ nKey ] = NULL; // keine Daten + it2->second->insert( RowMap::value_type( nKey, NULL )); // keine Daten } } } -- cgit