summaryrefslogtreecommitdiff
path: root/io/source/TextInputStream/TextInputStream.cxx
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/TextInputStream/TextInputStream.cxx
parentda67467802f7a52bada5099ef7ad20c5893f3010 (diff)
#65293# exceptions for solaris
Diffstat (limited to 'io/source/TextInputStream/TextInputStream.cxx')
-rw-r--r--io/source/TextInputStream/TextInputStream.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx
index eb54395c9089..58e32ca89ecd 100644
--- a/io/source/TextInputStream/TextInputStream.cxx
+++ b/io/source/TextInputStream/TextInputStream.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TextInputStream.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: ab $ $Date: 2001-07-10 14:30:45 $
+ * last change: $Author: obo $ $Date: 2001-09-21 15:25:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,9 +160,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();
};
OTextInputStream::OTextInputStream()
@@ -505,12 +505,12 @@ Sequence< OUString > TextInputStream_getSupportedServiceNames()
return *pNames;
}
-OUString OTextInputStream::getImplementationName() SAL_THROW( () )
+OUString OTextInputStream::getImplementationName() throw()
{
return TextInputStream_getImplementationName();
}
-sal_Bool OTextInputStream::supportsService(const OUString& ServiceName) SAL_THROW( () )
+sal_Bool OTextInputStream::supportsService(const OUString& ServiceName) throw()
{
Sequence< OUString > aSNL = getSupportedServiceNames();
const OUString * pArray = aSNL.getConstArray();
@@ -522,7 +522,7 @@ sal_Bool OTextInputStream::supportsService(const OUString& ServiceName) SAL_THRO
return sal_False;
}
-Sequence< OUString > OTextInputStream::getSupportedServiceNames(void) SAL_THROW( () )
+Sequence< OUString > OTextInputStream::getSupportedServiceNames(void) throw()
{
return TextInputStream_getSupportedServiceNames();
}