diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/expand/ucpexpand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx index 9fa5b4d9064b..49673d6c838d 100644 --- a/ucb/source/ucp/expand/ucpexpand.cxx +++ b/ucb/source/ucp/expand/ucpexpand.cxx @@ -115,7 +115,7 @@ void ExpandContentProviderImpl::disposing() } -static uno::Reference< uno::XInterface > SAL_CALL create( +uno::Reference< uno::XInterface > SAL_CALL create( uno::Reference< uno::XComponentContext > const & xComponentContext ) { return static_cast< ::cppu::OWeakObject * >( @@ -123,13 +123,13 @@ static uno::Reference< uno::XInterface > SAL_CALL create( } -static OUString SAL_CALL implName() +OUString SAL_CALL implName() { return OUString("com.sun.star.comp.ucb.ExpandContentProvider"); } -static uno::Sequence< OUString > SAL_CALL supportedServices() +uno::Sequence< OUString > SAL_CALL supportedServices() { OUString names [] = { OUString("com.sun.star.ucb.ExpandContentProvider"), |