From 85825e0fd54551735ef05b8484f71974734b9135 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 22 Apr 2016 10:08:07 +0200 Subject: Avoid reserved identifiers Change-Id: I27ff0f4f0eb395d7e0a60dd604758c220a3134c4 --- sw/source/ui/vba/vbaglobals.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/ui/vba/vbaglobals.cxx') diff --git a/sw/source/ui/vba/vbaglobals.cxx b/sw/source/ui/vba/vbaglobals.cxx index bb2859f7d259..d60115d42564 100644 --- a/sw/source/ui/vba/vbaglobals.cxx +++ b/sw/source/ui/vba/vbaglobals.cxx @@ -125,9 +125,9 @@ SwVbaGlobals::getSelection() throw (uno::RuntimeException, std::exception) return getApplication()->getSelection(); } -float SAL_CALL SwVbaGlobals::CentimetersToPoints( float _Centimeters ) throw (uno::RuntimeException, std::exception) +float SAL_CALL SwVbaGlobals::CentimetersToPoints( float Centimeters ) throw (uno::RuntimeException, std::exception) { - return getApplication()->CentimetersToPoints( _Centimeters ); + return getApplication()->CentimetersToPoints( Centimeters ); } OUString -- cgit