diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 16:31:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:41 +0200 |
commit | 802765dbe5f79748453c985da08824fb9ddefe11 (patch) | |
tree | bc2b86b325f419baa41a08020cf746523661447c /package/inc | |
parent | 52e69bfbba7220fe4181098102876f0e83ffbee1 (diff) |
loplugin:unusedmethods unused return value in oox,package
Change-Id: I63862c3ce32a1106b7de037f422e7e5480e8bfd6
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ByteGrabber.hxx | 2 | ||||
-rw-r--r-- | package/inc/ZipFile.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx index ffa112c871ab..195606539e96 100644 --- a/package/inc/ByteGrabber.hxx +++ b/package/inc/ByteGrabber.hxx @@ -51,7 +51,7 @@ public: sal_Int32 SAL_CALL readBytes( css::uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException); // XSeekable - sal_Int64 SAL_CALL seek( sal_Int64 location ) + void SAL_CALL seek( sal_Int64 location ) throw(css::lang::IllegalArgumentException, css::io::IOException, css::uno::RuntimeException); sal_Int64 SAL_CALL getPosition( ) throw(css::io::IOException, css::uno::RuntimeException); diff --git a/package/inc/ZipFile.hxx b/package/inc/ZipFile.hxx index d49fcab233bc..624593f39075 100644 --- a/package/inc/ZipFile.hxx +++ b/package/inc/ZipFile.hxx @@ -180,7 +180,7 @@ protected: throw(css::io::IOException, css::packages::zip::ZipException, css::uno::RuntimeException); sal_Int32 findEND() throw(css::io::IOException, css::packages::zip::ZipException, css::uno::RuntimeException); - sal_Int32 recover() + void recover() throw(css::io::IOException, css::packages::zip::ZipException, css::uno::RuntimeException); }; |