diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-10 09:21:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-11 07:52:55 +0200 |
commit | ab6849db5540b1836f91708acc4ae8a9f49a6d7c (patch) | |
tree | cd08ac270a9b946f9b39b9af7035417b2beb913c /include/svx | |
parent | 3cd343ca62d80753f88135aa88ea0dc4d935f315 (diff) |
loplugin:virtualdown in AccessibleShape
Change-Id: I35c8c4b2c561f3ce4fdc3d94cc74463abbc087f4
Reviewed-on: https://gerrit.libreoffice.org/73769
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/AccessibleControlShape.hxx | 3 | ||||
-rw-r--r-- | include/svx/AccessibleGraphicShape.hxx | 3 | ||||
-rw-r--r-- | include/svx/AccessibleOLEShape.hxx | 3 | ||||
-rw-r--r-- | include/svx/AccessibleShape.hxx | 3 |
4 files changed, 3 insertions, 9 deletions
diff --git a/include/svx/AccessibleControlShape.hxx b/include/svx/AccessibleControlShape.hxx index 8c8115d9d748..2ea2f73dd6d7 100644 --- a/include/svx/AccessibleControlShape.hxx +++ b/include/svx/AccessibleControlShape.hxx @@ -138,8 +138,7 @@ private: CreateAccessibleName( ) override; /// Create a description string that contains the accessible description. - virtual OUString - CreateAccessibleDescription( ) override; + OUString CreateAccessibleDescription(); #ifdef DBG_UTIL /// Set the specified state diff --git a/include/svx/AccessibleGraphicShape.hxx b/include/svx/AccessibleGraphicShape.hxx index 7be88770c30c..8b613ea7e0e4 100644 --- a/include/svx/AccessibleGraphicShape.hxx +++ b/include/svx/AccessibleGraphicShape.hxx @@ -94,8 +94,7 @@ protected: CreateAccessibleBaseName () override; /// Create a description string that contains the accessible description. - virtual OUString - CreateAccessibleDescription () override; + OUString CreateAccessibleDescription(); private: AccessibleGraphicShape (const AccessibleGraphicShape&) = delete; diff --git a/include/svx/AccessibleOLEShape.hxx b/include/svx/AccessibleOLEShape.hxx index c25eb75fae54..3c4f71651582 100644 --- a/include/svx/AccessibleOLEShape.hxx +++ b/include/svx/AccessibleOLEShape.hxx @@ -100,8 +100,7 @@ protected: CreateAccessibleBaseName () override; /// Create a description string that contains the accessible description. - virtual OUString - CreateAccessibleDescription () override; + OUString CreateAccessibleDescription(); private: AccessibleOLEShape (const AccessibleOLEShape&) = delete; diff --git a/include/svx/AccessibleShape.hxx b/include/svx/AccessibleShape.hxx index 79f44f439c45..9a2f206dfb8a 100644 --- a/include/svx/AccessibleShape.hxx +++ b/include/svx/AccessibleShape.hxx @@ -411,9 +411,6 @@ protected: virtual OUString CreateAccessibleName() override; - /// Create a description string that contains the accessible description. - virtual OUString - CreateAccessibleDescription(); /// @throws css::uno::RuntimeException OUString GetFullAccessibleName(AccessibleShape *shape); |