summaryrefslogtreecommitdiff
path: root/io/source/stm
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 10:44:22 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 12:55:52 +0200
commit63cec254e7ce54c7f919442002187638ff5dfed1 (patch)
tree1440194d01dd2ef863a304ac7b1576d9f12276b1 /io/source/stm
parente60872a5894ee86b0db455d97c8373f995fc9612 (diff)
com::sun::star->css in io
Change-Id: I4a0cd4b29db91584c23148d659846c71b90b0d65
Diffstat (limited to 'io/source/stm')
-rw-r--r--io/source/stm/odata.cxx8
-rw-r--r--io/source/stm/opump.cxx22
2 files changed, 15 insertions, 15 deletions
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx
index 4459609a552c..ee37bcbd655c 100644
--- a/io/source/stm/odata.cxx
+++ b/io/source/stm/odata.cxx
@@ -964,7 +964,7 @@ public:
{ ODataOutputStream::writeUTF( Value );}
// XObjectOutputStream
- virtual void SAL_CALL writeObject( const Reference< XPersistObject > & r ) throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL writeObject( const Reference< XPersistObject > & r ) throw (css::io::IOException, css::uno::RuntimeException, std::exception) override;
public: // XMarkableStream
virtual sal_Int32 SAL_CALL createMark() throw (IOException, RuntimeException, std::exception) override;
@@ -992,7 +992,7 @@ OObjectOutputStream::~OObjectOutputStream()
{
}
-void OObjectOutputStream::writeObject( const Reference< XPersistObject > & xPObj ) throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception)
+void OObjectOutputStream::writeObject( const Reference< XPersistObject > & xPObj ) throw (css::io::IOException, css::uno::RuntimeException, std::exception)
{
connectToMarkable();
@@ -1239,7 +1239,7 @@ public: // XDataInputStream
{ return ODataInputStream::readUTF(); }
public: // XObjectInputStream
- virtual Reference< XPersistObject > SAL_CALL readObject( ) throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual Reference< XPersistObject > SAL_CALL readObject( ) throw (css::io::IOException, css::uno::RuntimeException, std::exception) override;
public: // XMarkableStream
virtual sal_Int32 SAL_CALL createMark()
@@ -1270,7 +1270,7 @@ OObjectInputStream::~OObjectInputStream()
{
}
-Reference< XPersistObject > OObjectInputStream::readObject() throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception)
+Reference< XPersistObject > OObjectInputStream::readObject() throw (css::io::IOException, css::uno::RuntimeException, std::exception)
{
// check if chain contains a XMarkableStream
connectToMarkable();
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx
index ac254d2a8d34..d967a74f9b9b 100644
--- a/io/source/stm/opump.cxx
+++ b/io/source/stm/opump.cxx
@@ -80,24 +80,24 @@ namespace io_stm {
virtual ~Pump();
// XActiveDataSource
- virtual void SAL_CALL setOutputStream( const Reference< ::com::sun::star::io::XOutputStream >& xOutput ) throw(std::exception) override;
- virtual Reference< ::com::sun::star::io::XOutputStream > SAL_CALL getOutputStream() throw(std::exception) override;
+ virtual void SAL_CALL setOutputStream( const Reference< css::io::XOutputStream >& xOutput ) throw(std::exception) override;
+ virtual Reference< css::io::XOutputStream > SAL_CALL getOutputStream() throw(std::exception) override;
// XActiveDataSink
- virtual void SAL_CALL setInputStream( const Reference< ::com::sun::star::io::XInputStream >& xStream ) throw(std::exception) override;
- virtual Reference< ::com::sun::star::io::XInputStream > SAL_CALL getInputStream() throw(std::exception) override;
+ virtual void SAL_CALL setInputStream( const Reference< css::io::XInputStream >& xStream ) throw(std::exception) override;
+ virtual Reference< css::io::XInputStream > SAL_CALL getInputStream() throw(std::exception) override;
// XActiveDataControl
- virtual void SAL_CALL addListener( const Reference< ::com::sun::star::io::XStreamListener >& xListener ) throw(std::exception) override;
- virtual void SAL_CALL removeListener( const Reference< ::com::sun::star::io::XStreamListener >& xListener ) throw(std::exception) override;
+ virtual void SAL_CALL addListener( const Reference< css::io::XStreamListener >& xListener ) throw(std::exception) override;
+ virtual void SAL_CALL removeListener( const Reference< css::io::XStreamListener >& xListener ) throw(std::exception) override;
virtual void SAL_CALL start() throw( RuntimeException, std::exception ) override;
virtual void SAL_CALL terminate() throw(std::exception) override;
// XConnectable
- virtual void SAL_CALL setPredecessor( const Reference< ::com::sun::star::io::XConnectable >& xPred ) throw(std::exception) override;
- virtual Reference< ::com::sun::star::io::XConnectable > SAL_CALL getPredecessor() throw(std::exception) override;
- virtual void SAL_CALL setSuccessor( const Reference< ::com::sun::star::io::XConnectable >& xSucc ) throw(std::exception) override;
- virtual Reference< ::com::sun::star::io::XConnectable > SAL_CALL getSuccessor() throw(std::exception) override;
+ virtual void SAL_CALL setPredecessor( const Reference< css::io::XConnectable >& xPred ) throw(std::exception) override;
+ virtual Reference< css::io::XConnectable > SAL_CALL getPredecessor() throw(std::exception) override;
+ virtual void SAL_CALL setSuccessor( const Reference< css::io::XConnectable >& xSucc ) throw(std::exception) override;
+ virtual Reference< css::io::XConnectable > SAL_CALL getSuccessor() throw(std::exception) override;
public: // XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw(std::exception ) override;
@@ -292,7 +292,7 @@ void Pump::run()
close();
fireClose();
}
- catch ( const com::sun::star::uno::Exception &e )
+ catch ( const css::uno::Exception &e )
{
// we are the last on the stack.
// this is to avoid crashing the program, when e.g. a bridge crashes