From 9181f09e28afdee26ffd0ed5f6d0c5dea0669cd1 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 17 Apr 2016 12:28:04 +0200 Subject: Avoid reserved identifier Change-Id: Iefea30eb0db96462aee87349968baf4756e1b786 --- vbahelper/source/vbahelper/vbaapplicationbase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vbahelper') diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx index 352caea646b9..aa6af2fa4f9e 100644 --- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx +++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx @@ -385,11 +385,11 @@ void SAL_CALL VbaApplicationBase::OnTime( const uno::Any& aEarliestTime, const O } } -float SAL_CALL VbaApplicationBase::CentimetersToPoints( float _Centimeters ) throw (uno::RuntimeException, std::exception) +float SAL_CALL VbaApplicationBase::CentimetersToPoints( float Centimeters ) throw (uno::RuntimeException, std::exception) { // i cm = 28.35 points static const float rate = 28.35f; - return ( _Centimeters * rate ); + return ( Centimeters * rate ); } uno::Any SAL_CALL VbaApplicationBase::getVBE() throw (uno::RuntimeException, std::exception) -- cgit