diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 15:09:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:56 +0100 |
commit | bf8441444cb00fe89acbd2c1d6f5abcc0d4e1247 (patch) | |
tree | b1784b81d11aae13c65d7fb243732de037e5983b /package | |
parent | 271cd24927cdff55dc80bc19fb3bd5764624a79e (diff) |
package: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I6cfedbb93fade4179d9dcbf3701116d4b320ebd3
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/owriteablestream.cxx | 3 | ||||
-rw-r--r-- | package/source/xstor/xstorage.cxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index 8b1e4c5291db..b7bbf51d5dce 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -2050,8 +2050,7 @@ namespace { struct lcl_ImplId : public rtl::Static< ::cppu::OImplementationId, l uno::Sequence< sal_Int8 > SAL_CALL OWriteStream::getImplementationId() throw( uno::RuntimeException, std::exception ) { - ::cppu::OImplementationId &rId = lcl_ImplId::get(); - return rId.getImplementationId(); + return css::uno::Sequence<sal_Int8>(); } sal_Int32 SAL_CALL OWriteStream::readBytes( uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index 7846a4c7a880..1c00a5d68dc8 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -2334,8 +2334,7 @@ namespace { struct lcl_ImplId : public rtl::Static< ::cppu::OImplementationId, l uno::Sequence< sal_Int8 > SAL_CALL OStorage::getImplementationId() throw( uno::RuntimeException, std::exception ) { - ::cppu::OImplementationId &rID = lcl_ImplId::get(); - return rID.getImplementationId(); + return css::uno::Sequence<sal_Int8>(); } // XStorage |