Kaydet (Commit) 8fd3b094 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

staruno -> css::uno

Change-Id: I29a8aa8168f604f1e71323b5a19c3f67c67e2c1a
üst 892f4c2a
...@@ -32,8 +32,6 @@ namespace osl ...@@ -32,8 +32,6 @@ namespace osl
namespace foo namespace foo
{ {
namespace staruno = ::com::sun::star::uno;
//= OOutputStreamWrapper //= OOutputStreamWrapper
...@@ -47,9 +45,9 @@ public: ...@@ -47,9 +45,9 @@ public:
OOutputStreamWrapper(::osl::File& _rStream) :rStream(_rStream) { } OOutputStreamWrapper(::osl::File& _rStream) :rStream(_rStream) { }
// css::io::XOutputStream // css::io::XOutputStream
virtual void SAL_CALL writeBytes(const staruno::Sequence< sal_Int8 >& aData) throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, staruno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL writeBytes(const css::uno::Sequence< sal_Int8 >& aData) throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL flush() throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, staruno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL flush() throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL closeOutput() throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, staruno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL closeOutput() throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
}; };
} // namespace utl } // namespace utl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment