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();
                        }
                }
        }


Reply via email to