diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-22 10:26:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-22 10:37:14 +0100 |
commit | 17c4bb3be34c234dab7d4986ddae50e6a7bfa065 (patch) | |
tree | 9a93a5e1d21d1aa2e187f82b30b9f4c131cf136f /unoxml | |
parent | e1b4216816ba927f171030101f272f7ec0eb8314 (diff) |
Needless SAL_CALL
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/rdf/librdf_repository.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index 85b40e968ca6..f97d3be9c0f5 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -335,7 +335,7 @@ public: const NamedGraphMap_t::iterator SAL_CALL clearGraph( const uno::Reference< rdf::XURI > & i_xName, bool i_Internal = false ); - void SAL_CALL addStatementGraph( + void addStatementGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, const uno::Reference< rdf::XNode > & i_xObject, @@ -343,14 +343,14 @@ public: bool i_Internal = false ); // throw (uno::RuntimeException, lang::IllegalArgumentException, // container::NoSuchElementException, rdf::RepositoryException); - void SAL_CALL removeStatementsGraph( + void removeStatementsGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, const uno::Reference< rdf::XNode > & i_xObject, const uno::Reference< rdf::XURI > & i_xName ); // throw (uno::RuntimeException, lang::IllegalArgumentException, // container::NoSuchElementException, rdf::RepositoryException); - uno::Reference< container::XEnumeration > SAL_CALL getStatementsGraph( + uno::Reference< container::XEnumeration > getStatementsGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, const uno::Reference< rdf::XNode > & i_xObject, @@ -1728,7 +1728,7 @@ const NamedGraphMap_t::iterator SAL_CALL librdf_Repository::clearGraph( return iter; } -void SAL_CALL librdf_Repository::addStatementGraph( +void librdf_Repository::addStatementGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, const uno::Reference< rdf::XNode > & i_xObject, @@ -1796,7 +1796,7 @@ void SAL_CALL librdf_Repository::addStatementGraph( } } -void SAL_CALL librdf_Repository::removeStatementsGraph( +void librdf_Repository::removeStatementsGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, const uno::Reference< rdf::XNode > & i_xObject, @@ -1865,7 +1865,7 @@ void SAL_CALL librdf_Repository::removeStatementsGraph( } } -uno::Reference< container::XEnumeration > SAL_CALL +uno::Reference< container::XEnumeration > librdf_Repository::getStatementsGraph( const uno::Reference< rdf::XResource > & i_xSubject, const uno::Reference< rdf::XURI > & i_xPredicate, |