diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filstr.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/file/filstr.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/file/filstr.cxx b/ucb/source/ucp/file/filstr.cxx index 8e605f7f1cc6..8c88b9fc2e54 100644 --- a/ucb/source/ucp/file/filstr.cxx +++ b/ucb/source/ucp/file/filstr.cxx @@ -167,8 +167,8 @@ XStream_impl::readSomeBytes( sal_Int64 SAL_CALL XStream_impl::getSomething( const css::uno::Sequence< sal_Int8 >& rIdentifier ) { - if (rIdentifier == utl::ByteReader::getUnoTunnelId()) - return reinterpret_cast<sal_Int64>(static_cast<utl::ByteReader*>(this)); + if (rIdentifier == comphelper::ByteReader::getUnoTunnelId()) + return reinterpret_cast<sal_Int64>(static_cast<comphelper::ByteReader*>(this)); return 0; } diff --git a/ucb/source/ucp/file/filstr.hxx b/ucb/source/ucp/file/filstr.hxx index 65cf4369ce75..7ba43753f261 100644 --- a/ucb/source/ucp/file/filstr.hxx +++ b/ucb/source/ucp/file/filstr.hxx @@ -26,8 +26,8 @@ #include <com/sun/star/io/XStream.hpp> #include <com/sun/star/io/XAsyncOutputMonitor.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> +#include <comphelper/bytereader.hxx> #include <cppuhelper/implbase.hxx> -#include <unotools/bytereader.hxx> #include <mutex> #include "filrec.hxx" @@ -45,7 +45,7 @@ class XStream_impl : public cppu::WeakImplHelper< css::io::XTruncate, css::io::XAsyncOutputMonitor, css::lang::XUnoTunnel >, - public utl::ByteReader + public comphelper::ByteReader { public: |