summaryrefslogtreecommitdiff
path: root/ucb/source/core/ucb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/core/ucb.cxx')
-rw-r--r--ucb/source/core/ucb.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/ucb/source/core/ucb.cxx b/ucb/source/core/ucb.cxx
index 5f5cff3df809..b25e266b9c53 100644
--- a/ucb/source/core/ucb.cxx
+++ b/ucb/source/core/ucb.cxx
@@ -815,7 +815,7 @@ Reference< XContentProvider > UniversalContentBroker::queryContentProvider(
: Reference< XContentProvider >();
}
-bool UniversalContentBroker::configureUcb()
+void UniversalContentBroker::configureUcb()
throw (uno::RuntimeException)
{
OUString aKey1;
@@ -824,19 +824,17 @@ bool UniversalContentBroker::configureUcb()
|| !(m_aArguments[0] >>= aKey1) || !(m_aArguments[1] >>= aKey2))
{
OSL_FAIL("UniversalContentBroker::configureUcb(): Bad arguments");
- return false;
+ return;
}
ContentProviderDataList aData;
if (!getContentProviderData(aKey1, aKey2, aData))
{
OSL_TRACE("UniversalContentBroker::configureUcb(): No configuration");
- return false;
+ return;
}
prepareAndRegister(aData);
-
- return true;
}
void UniversalContentBroker::prepareAndRegister(