diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-26 14:44:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-29 08:04:06 +0200 |
commit | 1110346b3b8e57a190366aabebb62e53c6ab6d01 (patch) | |
tree | aa22f8f28cab116834e4222ef03206a7e0b0d29d /unoxml/source | |
parent | 2b24b6b6c3b18d7d934b3f76cc7a787c498ece4a (diff) |
loplugin:unuseddefaultparam in unotools
Change-Id: Icb2dc74263026d90b7998b3fd880fd5d2c67a3b7
Diffstat (limited to 'unoxml/source')
-rw-r--r-- | unoxml/source/rdf/librdf_repository.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index c72df2dcf7dd..04e0f7f5c35b 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -375,8 +375,7 @@ public: 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, - bool i_Internal = false ); + const uno::Reference< rdf::XURI > & i_xName ); // throw (uno::RuntimeException, lang::IllegalArgumentException, // container::NoSuchElementException, rdf::RepositoryException); void addStatementGraph_Lock( @@ -1805,8 +1804,7 @@ void librdf_Repository::addStatementGraph_NoLock( 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_xGraphName, - bool i_Internal) + const uno::Reference< rdf::XURI > & i_xGraphName) //throw (uno::RuntimeException, lang::IllegalArgumentException, // container::NoSuchElementException, rdf::RepositoryException) { @@ -1832,7 +1830,7 @@ void librdf_Repository::addStatementGraph_NoLock( ::osl::MutexGuard g(m_aMutex); // don't call i_x* with mutex locked - addStatementGraph_Lock(stmt, contextU, i_Internal); + addStatementGraph_Lock(stmt, contextU, false/*i_Internal*/); } void librdf_Repository::addStatementGraph_Lock( |