summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-17 12:28:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 10:20:32 +0200
commit9181f09e28afdee26ffd0ed5f6d0c5dea0669cd1 (patch)
tree5c299c5149138cc29fadcebaa607cec61a59847c /vbahelper
parentcaf64a8c814bf821eef302fc6c2570c05b7fb169 (diff)
Avoid reserved identifier
Change-Id: Iefea30eb0db96462aee87349968baf4756e1b786
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbaapplicationbase.cxx4
1 files changed, 2 insertions, 2 deletions
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)