diff options
author | Wastack <btomi96@gmail.com> | 2016-03-11 00:54:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-11 08:38:11 +0000 |
commit | 83452dd0836fe0da96095a322231d837fc31934b (patch) | |
tree | 21a2777a29281d31742cdc1cbcb5f804312391e5 /ucb | |
parent | 0fea7b00e26d9e5ee9ae995d484540adadf85fda (diff) |
tdf#97966 redundant static keywords removed 6
Change-Id: Iaf034f3b2282a973f6503edea41cb3184543fb11
Reviewed-on: https://gerrit.libreoffice.org/23133
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
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"), |