You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/03/19 16:44:15 UTC

svn commit: r1458348 - /openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx

Author: hdu
Date: Tue Mar 19 15:44:15 2013
New Revision: 1458348

URL: http://svn.apache.org/r1458348
Log:
WaE: fix miscount in ScVbaCharts::getCount() caused by typo

Modified:
    openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx

Modified: openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx?rev=1458348&r1=1458347&r2=1458348&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx (original)
+++ openoffice/trunk/main/sc/source/ui/vba/vbacharts.cxx Tue Mar 19 15:44:15 2013
@@ -75,7 +75,7 @@ ScVbaCharts::getCount() throw (uno::Runt
 			if ( xTableChartsSupplier.is() )
 			{
 				uno::Reference< table::XTableCharts > xTableCharts = xTableChartsSupplier->getCharts();
-				ncount =+ xTableCharts->getElementNames().getLength();
+				ncount += xTableCharts->getElementNames().getLength();
 			}
 		}
 	}