From e4fb171d3ad15ae9abbc93d9db956674498c9dd5 Mon Sep 17 00:00:00 2001 From: Szabolcs Dezsi Date: Fri, 6 Apr 2012 14:09:04 +0200 Subject: Replaced a few equal calls with == --- oox/source/export/SchXMLSeriesHelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oox') diff --git a/oox/source/export/SchXMLSeriesHelper.cxx b/oox/source/export/SchXMLSeriesHelper.cxx index 572312237086..509c1217b2e3 100644 --- a/oox/source/export/SchXMLSeriesHelper.cxx +++ b/oox/source/export/SchXMLSeriesHelper.cxx @@ -179,7 +179,7 @@ bool SchXMLSeriesHelper::isCandleStickSeries( if( xChartType.is() ) { rtl::OUString aServiceName( xChartType->getChartType() ); - if( aServiceName.equals( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.chart2.CandleStickChartType" ) ) ) ) + if( aServiceName == "com.sun.star.chart2.CandleStickChartType" ) bRet = true; } } -- cgit