include/vbahelper/vbaapplicationbase.hxx          |    2 +-
 vbahelper/source/vbahelper/vbaapplicationbase.cxx |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 9181f09e28afdee26ffd0ed5f6d0c5dea0669cd1
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Sun Apr 17 12:28:04 2016 +0200

    Avoid reserved identifier
    
    Change-Id: Iefea30eb0db96462aee87349968baf4756e1b786

diff --git a/include/vbahelper/vbaapplicationbase.hxx 
b/include/vbahelper/vbaapplicationbase.hxx
index 5d809b8..52fe03d 100644
--- a/include/vbahelper/vbaapplicationbase.hxx
+++ b/include/vbahelper/vbaapplicationbase.hxx
@@ -57,7 +57,7 @@ public:
 
     virtual css::uno::Any SAL_CALL Run( const OUString& MacroName, const 
css::uno::Any& varg1, const css::uno::Any& varg2, const css::uno::Any& varg3, 
const css::uno::Any& varg4, const css::uno::Any& varg5, const css::uno::Any& 
varg6, const css::uno::Any& varg7, const css::uno::Any& varg8, const 
css::uno::Any& varg9, const css::uno::Any& varg10, const css::uno::Any& varg11, 
const css::uno::Any& varg12, const css::uno::Any& varg13, const css::uno::Any& 
varg14, const css::uno::Any& varg15, const css::uno::Any& varg16, const 
css::uno::Any& varg17, const css::uno::Any& varg18, const css::uno::Any& 
varg19, const css::uno::Any& varg20, const css::uno::Any& varg21, const 
css::uno::Any& varg22, const css::uno::Any& varg23, const css::uno::Any& 
varg24, const css::uno::Any& varg25, const css::uno::Any& varg26, const 
css::uno::Any& varg27, const css::uno::Any& varg28, const css::uno::Any& 
varg29, const css::uno::Any& varg30 ) throw (css::uno::RuntimeException, 
std::exception) override;
     virtual void SAL_CALL OnTime( const css::uno::Any& aEarliestTime, const 
OUString& aFunction, const css::uno::Any& aLatestTime, const css::uno::Any& 
aSchedule ) throw (css::uno::RuntimeException, std::exception) override;
-    virtual float SAL_CALL CentimetersToPoints( float _Centimeters ) throw 
(css::uno::RuntimeException, std::exception) override;
+    virtual float SAL_CALL CentimetersToPoints( float Centimeters ) throw 
(css::uno::RuntimeException, std::exception) override;
     virtual void SAL_CALL Undo() throw (css::uno::RuntimeException, 
std::exception) override;
     virtual void SAL_CALL Quit() throw (css::uno::RuntimeException, 
std::exception) override;
 
diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx 
b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
index 352caea..aa6af2f 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)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to