From 26ec80f47df1b32c5e1ae8c96d597ef8c90fee86 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 9 Apr 2015 08:45:51 +0200 Subject: loplugin:staticmethods Change-Id: I33a8ca28b0c3bf1c31758d93238e74927bebde9c --- chart2/source/view/main/ChartView.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chart2') diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index b9a1e37f348e..d9258e99bf7e 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -3124,7 +3124,7 @@ OUString ChartView::dump() throw (uno::RuntimeException, std::exception) if(xShape.is()) { XShapeDumper dumper; - OUString aString = dumper.dump(mxRootShape); + OUString aString = XShapeDumper::dump(mxRootShape); aBuffer.append(aString); } else @@ -3133,7 +3133,7 @@ OUString ChartView::dump() throw (uno::RuntimeException, std::exception) if(!xSingleShape.is()) continue; XShapeDumper dumper; - OUString aString = dumper.dump(xSingleShape); + OUString aString = XShapeDumper::dump(xSingleShape); aBuffer.append(aString); } aBuffer.append("\n\n"); -- cgit