diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-23 10:44:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-23 12:55:52 +0200 |
commit | 63cec254e7ce54c7f919442002187638ff5dfed1 (patch) | |
tree | 1440194d01dd2ef863a304ac7b1576d9f12276b1 /io/test | |
parent | e60872a5894ee86b0db455d97c8373f995fc9612 (diff) |
com::sun::star->css in io
Change-Id: I4a0cd4b29db91584c23148d659846c71b90b0d65
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/stm/pumptest.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/io/test/stm/pumptest.cxx b/io/test/stm/pumptest.cxx index 60dc4144fe38..c4b83d5c653e 100644 --- a/io/test/stm/pumptest.cxx +++ b/io/test/stm/pumptest.cxx @@ -241,29 +241,29 @@ public: m_bDisposed( sal_False ) {} - virtual void SAL_CALL disposing( const EventObject &obj ) throw (::com::sun::star::uno::RuntimeException) + virtual void SAL_CALL disposing( const EventObject &obj ) throw (css::uno::RuntimeException) { m_bDisposed = sal_True; // printf( "disposing called\n"); } - virtual void SAL_CALL started( ) throw (::com::sun::star::uno::RuntimeException) + virtual void SAL_CALL started( ) throw (css::uno::RuntimeException) { m_bStarted = sal_True; // printf( "started called\n"); } - virtual void SAL_CALL closed( ) throw (::com::sun::star::uno::RuntimeException) + virtual void SAL_CALL closed( ) throw (css::uno::RuntimeException) { m_bClosed = sal_True; // printf( "closed called\n"); } - virtual void SAL_CALL terminated( ) throw (::com::sun::star::uno::RuntimeException) + virtual void SAL_CALL terminated( ) throw (css::uno::RuntimeException) { m_bTerminated = sal_True; // printf( "terminated called\n"); } - virtual void SAL_CALL error( const ::com::sun::star::uno::Any& aException ) - throw (::com::sun::star::uno::RuntimeException) + virtual void SAL_CALL error( const css::uno::Any& aException ) + throw (css::uno::RuntimeException) { m_bError = sal_True; Exception e; |