From b36963c0a6a09f70ca6d8d607dd3249a3496497d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 12 Oct 2015 16:04:04 +0200 Subject: Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274 --- io/qa/textinputstream.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'io/qa') diff --git a/io/qa/textinputstream.cxx b/io/qa/textinputstream.cxx index 89fc32091571..48720ea24723 100644 --- a/io/qa/textinputstream.cxx +++ b/io/qa/textinputstream.cxx @@ -46,7 +46,7 @@ private: css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException, std::exception) - SAL_OVERRIDE + override { CPPUNIT_FAIL("readLine is supposed to call readSomeBytes instead"); return 0;} sal_Int32 SAL_CALL readSomeBytes( @@ -54,7 +54,7 @@ private: throw ( css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, - css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE + css::uno::RuntimeException, ::std::exception) override { assert(nMaxBytesToRead >= 0); osl::MutexGuard g(mutex_); @@ -74,7 +74,7 @@ private: throw ( css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, - css::uno::RuntimeException, std::exception) SAL_OVERRIDE + css::uno::RuntimeException, std::exception) override { assert(nBytesToSkip >= 0); osl::MutexGuard g(mutex_); @@ -87,7 +87,7 @@ private: sal_Int32 SAL_CALL available() throw ( css::io::NotConnectedException, css::io::IOException, - css::uno::RuntimeException, std::exception) SAL_OVERRIDE + css::uno::RuntimeException, std::exception) override { osl::MutexGuard g(mutex_); checkClosed(); @@ -98,7 +98,7 @@ private: void SAL_CALL closeInput() throw ( css::io::NotConnectedException, css::io::IOException, - css::uno::RuntimeException, std::exception) SAL_OVERRIDE + css::uno::RuntimeException, std::exception) override { osl::MutexGuard g(mutex_); checkClosed(); -- cgit