summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-02-16 15:16:10 +0100
committerDavid Tardon <dtardon@redhat.com>2014-02-16 15:16:10 +0100
commit2418fd471ef56d2bf128db59051d51be0f02982d (patch)
tree403238fbd52bea4e91a6d3a678045fbbaaca4b17 /chart2
parent5895b954aa043015e9b22c255da86fb063f12268 (diff)
add SAL_CALL to definitions too
Change-Id: Id7c05aeb7e14a49cdb1fd6a889ddbb17e31ad368
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/main/DummyXShape.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index 83eb7babcaf3..b8ecbb2b83f4 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());