summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filstr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-23 11:37:33 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-23 10:57:45 +0000
commit5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 (patch)
treeee80e3ac5c98bd1321e5a3e79f0f93f5bb09f745 /ucb/source/ucp/file/filstr.hxx
parentd43f4390e006716ca538ad92d09bd012179efd66 (diff)
remove some more (void) style function definitions/declarations
found with git grep -nP '^\s*void\s*\)' Change-Id: I1206031cf957cb6f957cae64ec5cae1280bda694 Reviewed-on: https://gerrit.libreoffice.org/26590 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb/source/ucp/file/filstr.hxx')
-rw-r--r--ucb/source/ucp/file/filstr.hxx28
1 files changed, 10 insertions, 18 deletions
diff --git a/ucb/source/ucp/file/filstr.hxx b/ucb/source/ucp/file/filstr.hxx
index 620a33ec8256..4c09bfffddb0 100644
--- a/ucb/source/ucp/file/filstr.hxx
+++ b/ucb/source/ucp/file/filstr.hxx
@@ -63,11 +63,11 @@ class XStream_impl : public cppu::WeakImplHelper<
// XStream
virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
- getInputStream( )
+ getInputStream()
throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Reference< css::io::XOutputStream > SAL_CALL
- getOutputStream( )
+ getOutputStream()
throw( css::uno::RuntimeException, std::exception ) override;
@@ -100,23 +100,20 @@ class XStream_impl : public cppu::WeakImplHelper<
void SAL_CALL
- skipBytes(
- sal_Int32 nBytesToSkip )
+ skipBytes( sal_Int32 nBytesToSkip )
throw( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
sal_Int32 SAL_CALL
- available(
- void )
+ available()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
void SAL_CALL
- closeInput(
- void )
+ closeInput()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
@@ -124,21 +121,18 @@ class XStream_impl : public cppu::WeakImplHelper<
// XSeekable
void SAL_CALL
- seek(
- sal_Int64 location )
+ seek( sal_Int64 location )
throw( css::lang::IllegalArgumentException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
sal_Int64 SAL_CALL
- getPosition(
- void )
+ getPosition()
throw( css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
sal_Int64 SAL_CALL
- getLength(
- void )
+ getLength()
throw( css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
@@ -162,8 +156,7 @@ class XStream_impl : public cppu::WeakImplHelper<
void SAL_CALL
- closeOutput(
- void )
+ closeOutput()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException, std::exception ) override;
@@ -187,8 +180,7 @@ class XStream_impl : public cppu::WeakImplHelper<
// Implementation methods
void SAL_CALL
- closeStream(
- void )
+ closeStream()
throw( css::io::NotConnectedException,
css::io::IOException,
css::uno::RuntimeException );