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 /include | |
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 'include')
-rw-r--r-- | include/connectivity/sdbcx/VCollection.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/filedlghelper.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/connectivity/sdbcx/VCollection.hxx b/include/connectivity/sdbcx/VCollection.hxx index 4337a025843e..ead911083029 100644 --- a/include/connectivity/sdbcx/VCollection.hxx +++ b/include/connectivity/sdbcx/VCollection.hxx @@ -176,7 +176,7 @@ namespace connectivity void renameObject(const OUString& _sOldName, const OUString& _sNewName); // only the name is identical to ::cppu::OComponentHelper - virtual void SAL_CALL disposing(); + virtual void disposing(); // dispatch the refcounting to the parent virtual void SAL_CALL acquire() throw() override; virtual void SAL_CALL release() throw() override; diff --git a/include/sfx2/filedlghelper.hxx b/include/sfx2/filedlghelper.hxx index d05ab0e24cdb..083e5a402ce2 100644 --- a/include/sfx2/filedlghelper.hxx +++ b/include/sfx2/filedlghelper.hxx @@ -204,7 +204,7 @@ public: // XFilePickerListener methods void FileSelectionChanged(); void DirectoryChanged(); - virtual void SAL_CALL ControlStateChanged( const css::ui::dialogs::FilePickerEvent& aEvent ); + virtual void ControlStateChanged( const css::ui::dialogs::FilePickerEvent& aEvent ); void DialogSizeChanged(); static OUString SAL_CALL HelpRequested( const css::ui::dialogs::FilePickerEvent& aEvent ); |