summaryrefslogtreecommitdiffstats
path: root/io/source/TextOutputStream
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2001-09-21 14:26:46 +0000
committerOliver Bolte <obo@openoffice.org>2001-09-21 14:26:46 +0000
commit5c4f3e095422bedcd295ce9cd8da1e2b737b022e (patch)
tree0f31ba70a612905a805f675e183b41b5c85489e4 /io/source/TextOutputStream
parentUik is still needed for compatibility reasons in some interfaces (diff)
downloadcore-5c4f3e095422bedcd295ce9cd8da1e2b737b022e.tar.gz
core-5c4f3e095422bedcd295ce9cd8da1e2b737b022e.zip
#65293# exceptions for solaris
Diffstat (limited to 'io/source/TextOutputStream')
-rw-r--r--io/source/TextOutputStream/TextOutputStream.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/io/source/TextOutputStream/TextOutputStream.cxx b/io/source/TextOutputStream/TextOutputStream.cxx
index 19407c9575c2..96a6b7218758 100644
--- a/io/source/TextOutputStream/TextOutputStream.cxx
+++ b/io/source/TextOutputStream/TextOutputStream.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TextOutputStream.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:32:53 $
+ * last change: $Author: obo $ $Date: 2001-09-21 15:26:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -136,9 +136,9 @@ public:
throw(RuntimeException);
// Methods XServiceInfo
- virtual OUString SAL_CALL getImplementationName() SAL_THROW( () );
- virtual Sequence< OUString > SAL_CALL getSupportedServiceNames(void) SAL_THROW( () );
- virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) SAL_THROW( () );
+ virtual OUString SAL_CALL getImplementationName() throw();
+ virtual Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw();
+ virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw();
};
OTextOutputStream::OTextOutputStream()
@@ -300,12 +300,12 @@ Sequence< OUString > TextOutputStream_getSupportedServiceNames()
return *pNames;
}
-OUString OTextOutputStream::getImplementationName() SAL_THROW( () )
+OUString OTextOutputStream::getImplementationName() throw()
{
return TextOutputStream_getImplementationName();
}
-sal_Bool OTextOutputStream::supportsService(const OUString& ServiceName) SAL_THROW( () )
+sal_Bool OTextOutputStream::supportsService(const OUString& ServiceName) throw()
{
Sequence< OUString > aSNL = getSupportedServiceNames();
const OUString * pArray = aSNL.getConstArray();
@@ -317,7 +317,7 @@ sal_Bool OTextOutputStream::supportsService(const OUString& ServiceName) SAL_THR
return sal_False;
}
-Sequence< OUString > OTextOutputStream::getSupportedServiceNames(void) SAL_THROW( () )
+Sequence< OUString > OTextOutputStream::getSupportedServiceNames(void) throw()
{
return TextOutputStream_getSupportedServiceNames();
}