diff options
author | Jesse <jspears@umd.edu> | 2011-12-14 14:43:58 -0500 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-15 16:38:50 +0000 |
commit | 6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch) | |
tree | d59cda7401565170e32c7d06af9755f3110651fd /unotools | |
parent | 63a817d2fb00f248053566c8b8364667432fa8b3 (diff) |
Removed extra semicolons
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/ucblockbytes.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index a53c7bf883fd..e9fa41b353bf 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -1602,7 +1602,7 @@ IMPL_LINK( UcbLockBytes, DataAvailHdl, void*, EMPTYARG ) UcbLockBytesRef UcbLockBytes::CreateInputLockBytes( const Reference< XInputStream >& xInputStream ) { if( !xInputStream.is() ) - return NULL;; + return NULL; UcbLockBytesRef xLockBytes = new UcbLockBytes(); xLockBytes->setDontClose_Impl(); @@ -1614,7 +1614,7 @@ UcbLockBytesRef UcbLockBytes::CreateInputLockBytes( const Reference< XInputStrea UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference< XStream >& xStream ) { if( !xStream.is() ) - return NULL;; + return NULL; UcbLockBytesRef xLockBytes = new UcbLockBytes(); xLockBytes->setDontClose_Impl(); @@ -1627,7 +1627,7 @@ UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference < XContent >& xCo const Reference < XInputStream >& xPostData, const Reference < XInteractionHandler >& xInteractionHandler, UcbLockBytesHandler* pHandler ) { if( !xContent.is() ) - return NULL;; + return NULL; UcbLockBytesRef xLockBytes = new UcbLockBytes( pHandler ); xLockBytes->SetSynchronMode( !pHandler ); @@ -1666,7 +1666,7 @@ UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference < XContent >& xCo StreamMode eOpenMode, const Reference < XInteractionHandler >& xInteractionHandler, UcbLockBytesHandler* pHandler ) { if( !xContent.is() ) - return NULL;; + return NULL; UcbLockBytesRef xLockBytes = new UcbLockBytes( pHandler ); xLockBytes->SetSynchronMode( !pHandler ); |