summaryrefslogtreecommitdiffstats
path: root/io/qa
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /io/qa
parentHAVE_CXX11_OVERRIDE is required on all supported toolchains (diff)
downloadcore-b36963c0a6a09f70ca6d8d607dd3249a3496497d.tar.gz
core-b36963c0a6a09f70ca6d8d607dd3249a3496497d.zip
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'io/qa')
-rw-r--r--io/qa/textinputstream.cxx10
1 files changed, 5 insertions, 5 deletions
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();