[Libreoffice-commits] core.git: 2 commits - chart2/source

David Tardon dtardon at redhat.com
Sun Feb 16 15:17:02 CET 2014


 chart2/source/view/main/DummyXShape.cxx |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 2418fd471ef56d2bf128db59051d51be0f02982d
Author: David Tardon <dtardon at redhat.com>
Date:   Sun Feb 16 15:16:10 2014 +0100

    add SAL_CALL to definitions too
    
    Change-Id: Id7c05aeb7e14a49cdb1fd6a889ddbb17e31ad368

diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index 83eb7ba..b8ecbb2 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -68,13 +68,13 @@ private:
     const std::map<OUString, uno::Any>& mrProperties;
 };
 
-sal_Bool DummyPropertySetInfo::hasPropertyByName( const OUString& rName )
+sal_Bool SAL_CALL DummyPropertySetInfo::hasPropertyByName( const OUString& rName )
     throw(uno::RuntimeException)
 {
     return mrProperties.find(rName) != mrProperties.end();
 }
 
-beans::Property DummyPropertySetInfo::getPropertyByName( const OUString& rName )
+beans::Property SAL_CALL DummyPropertySetInfo::getPropertyByName( const OUString& rName )
     throw(uno::RuntimeException, beans::UnknownPropertyException)
 {
     beans::Property aRet;
@@ -88,7 +88,7 @@ beans::Property DummyPropertySetInfo::getPropertyByName( const OUString& rName )
     return aRet;
 }
 
-uno::Sequence< beans::Property > DummyPropertySetInfo::getProperties()
+uno::Sequence< beans::Property > SAL_CALL DummyPropertySetInfo::getProperties()
     throw(uno::RuntimeException)
 {
     uno::Sequence< beans::Property > aRet(mrProperties.size());
commit 5895b954aa043015e9b22c255da86fb063f12268
Author: David Tardon <dtardon at redhat.com>
Date:   Sun Feb 16 15:15:33 2014 +0100

    move SAL_CALL to the right place
    
    Change-Id: I5081220e8880c9608daa482690b99e9738afc30e

diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index 1dcc9b9..83eb7ba 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -55,13 +55,13 @@ public:
     DummyPropertySetInfo(const std::map<OUString, uno::Any>& rProps ):
         mrProperties(rProps) {}
 
-    virtual SAL_CALL sal_Bool hasPropertyByName( const OUString& rName )
+    virtual sal_Bool SAL_CALL hasPropertyByName( const OUString& rName )
         throw(uno::RuntimeException);
 
-    virtual SAL_CALL beans::Property getPropertyByName( const OUString& rName )
+    virtual beans::Property SAL_CALL getPropertyByName( const OUString& rName )
         throw(uno::RuntimeException, beans::UnknownPropertyException);
 
-    virtual SAL_CALL uno::Sequence< beans::Property > getProperties()
+    virtual uno::Sequence< beans::Property > SAL_CALL getProperties()
         throw(uno::RuntimeException);
 
 private:


More information about the Libreoffice-commits mailing list