summaryrefslogtreecommitdiff
path: root/oox/source/helper/textinputstream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/helper/textinputstream.cxx')
-rw-r--r--oox/source/helper/textinputstream.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/oox/source/helper/textinputstream.cxx b/oox/source/helper/textinputstream.cxx
index ab966a9befaf..c368a205cd66 100644
--- a/oox/source/helper/textinputstream.cxx
+++ b/oox/source/helper/textinputstream.cxx
@@ -47,15 +47,15 @@ public:
explicit UnoBinaryInputStream( BinaryInputStream& rInStrm );
virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& rData, sal_Int32 nBytesToRead )
- throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception);
+ throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL readSomeBytes( Sequence< sal_Int8 >& rData, sal_Int32 nMaxBytesToRead )
- throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception);
+ throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip )
- throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception);
+ throw (NotConnectedException, BufferSizeExceededException, IOException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL available()
- throw (NotConnectedException, IOException, RuntimeException, std::exception);
+ throw (NotConnectedException, IOException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL closeInput()
- throw (NotConnectedException, IOException, RuntimeException, std::exception);
+ throw (NotConnectedException, IOException, RuntimeException, std::exception) SAL_OVERRIDE;
private:
void ensureConnected() const throw (NotConnectedException);