diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:16:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:52 +0200 |
commit | 0e507ae031768deceab236a41d1bbe9fb5123cea (patch) | |
tree | 34cc1626f1e8fa6d50d6edd88045be6252150f19 /io | |
parent | db246b491c1639942d9f952658d33974e9b06201 (diff) |
various: remove SAL_THROW macro
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
Diffstat (limited to 'io')
-rw-r--r-- | io/source/TextOutputStream/TextOutputStream.cxx | 2 | ||||
-rw-r--r-- | io/source/services.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/io/source/TextOutputStream/TextOutputStream.cxx b/io/source/TextOutputStream/TextOutputStream.cxx index 282bedc1067e..8dbf052d8df6 100644 --- a/io/source/TextOutputStream/TextOutputStream.cxx +++ b/io/source/TextOutputStream/TextOutputStream.cxx @@ -248,7 +248,7 @@ Reference< XInterface > SAL_CALL TextOutputStream_CreateInstance( return Reference < XInterface >( ( OWeakObject * ) new OTextOutputStream() ); } -OUString TextOutputStream_getImplementationName() SAL_THROW( () ) +OUString TextOutputStream_getImplementationName() { return OUString( IMPLEMENTATION_NAME ); } diff --git a/io/source/services.hxx b/io/source/services.hxx index ec37e09566d9..89dc339195b2 100644 --- a/io/source/services.hxx +++ b/io/source/services.hxx @@ -51,7 +51,7 @@ namespace io_TextInputStream { namespace io_TextOutputStream { Reference< XInterface > SAL_CALL TextOutputStream_CreateInstance(SAL_UNUSED_PARAMETER const Reference< XComponentContext > &); - OUString TextOutputStream_getImplementationName() SAL_THROW( () ); + OUString TextOutputStream_getImplementationName(); Sequence< OUString > TextOutputStream_getSupportedServiceNames(); } |