diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-05 10:11:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-06 07:42:50 +0100 |
commit | c0ac78c97174fcde68daf174f6e8ade502c507d3 (patch) | |
tree | 800de448258b3fd82d78efdb53d4f5c8eed6cb26 /sc/source/ui/inc/AccessibleCellBase.hxx | |
parent | da85b582656219a0bc9d20cef59ae6b7ee1c4a9b (diff) |
loplugin:salcall handle virtual methods
Change-Id: Iab95db31188ea2914a46d63a7ebef3d825e6ec42
Reviewed-on: https://gerrit.libreoffice.org/45851
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/inc/AccessibleCellBase.hxx')
-rw-r--r-- | sc/source/ui/inc/AccessibleCellBase.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/AccessibleCellBase.hxx b/sc/source/ui/inc/AccessibleCellBase.hxx index 45c074797c9a..78b5316f7799 100644 --- a/sc/source/ui/inc/AccessibleCellBase.hxx +++ b/sc/source/ui/inc/AccessibleCellBase.hxx @@ -44,7 +44,7 @@ protected: virtual ~ScAccessibleCellBase() override; public: - virtual bool SAL_CALL isVisible() override; + virtual bool isVisible() override; ///===== XInterface ===================================================== @@ -69,11 +69,11 @@ public: protected: /// Return this object's description. - virtual OUString SAL_CALL + virtual OUString createAccessibleDescription() override; /// Return the object's current name. - virtual OUString SAL_CALL + virtual OUString createAccessibleName() override; public: |