summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2001-06-14 15:02:22 +0000
committerRüdiger Timm <rt@openoffice.org>2001-06-14 15:02:22 +0000
commitc186661493f5dccdcf1356d9fd32ba6c122fa4c8 (patch)
tree1fa230889b90ee80ff87e635b1a5bec224bd7eeb /svx
parentb784cfc53996a57de89755c05bfc017e8ca1e516 (diff)
#87576# spare parenthesis in throw statements removed
Diffstat (limited to 'svx')
-rw-r--r--svx/source/xml/xmlgrhlp.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svx/source/xml/xmlgrhlp.cxx b/svx/source/xml/xmlgrhlp.cxx
index 6fb0f74329ce..69622e241178 100644
--- a/svx/source/xml/xmlgrhlp.cxx
+++ b/svx/source/xml/xmlgrhlp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlgrhlp.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: ka $
+ * last change: $Author: rt $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -182,7 +182,7 @@ sal_Int32 SAL_CALL SvXMLGraphicInputStream::readBytes( Sequence< sal_Int8 >& rDa
throw( NotConnectedException, BufferSizeExceededException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException();
return mxStmWrapper->readBytes( rData, nBytesToRead );
}
@@ -193,7 +193,7 @@ sal_Int32 SAL_CALL SvXMLGraphicInputStream::readSomeBytes( Sequence< sal_Int8 >&
throw( NotConnectedException, BufferSizeExceededException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
return mxStmWrapper->readSomeBytes( rData, nMaxBytesToRead );
}
@@ -204,7 +204,7 @@ void SAL_CALL SvXMLGraphicInputStream::skipBytes( sal_Int32 nBytesToSkip )
throw( NotConnectedException, BufferSizeExceededException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
mxStmWrapper->skipBytes( nBytesToSkip );
}
@@ -214,7 +214,7 @@ void SAL_CALL SvXMLGraphicInputStream::skipBytes( sal_Int32 nBytesToSkip )
sal_Int32 SAL_CALL SvXMLGraphicInputStream::available() throw( NotConnectedException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
return mxStmWrapper->available();
}
@@ -224,7 +224,7 @@ sal_Int32 SAL_CALL SvXMLGraphicInputStream::available() throw( NotConnectedExcep
void SAL_CALL SvXMLGraphicInputStream::closeInput() throw( NotConnectedException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
mxStmWrapper->closeInput();
}
@@ -291,7 +291,7 @@ void SAL_CALL SvXMLGraphicOutputStream::writeBytes( const Sequence< sal_Int8 >&
throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
mxStmWrapper->writeBytes( rData );
}
@@ -302,7 +302,7 @@ void SAL_CALL SvXMLGraphicOutputStream::flush()
throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
mxStmWrapper->flush();
}
@@ -313,7 +313,7 @@ void SAL_CALL SvXMLGraphicOutputStream::closeOutput()
throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException )
{
if( !mxStmWrapper.is() )
- throw( NotConnectedException() );
+ throw NotConnectedException() ;
mxStmWrapper->closeOutput();
mxStmWrapper = Reference< XOutputStream >();