From eb34a6a93fcdebe545ab267d7cc7c5c72bab22c8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 10 Sep 2018 09:33:08 +0200 Subject: clang-tidy bugprone-virtual-near-miss in RecoveryDialog warning: method 'svx::DocRecovery::RecoveryDialog::execute' has a similar name and the same signature as virtual method 'Dialog::Execute'; did you mean to override it? Change-Id: I42eadd96069ff23c44fedc76d800161767313e77 Reviewed-on: https://gerrit.libreoffice.org/60240 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svx/source/inc/docrecovery.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svx/source/inc/docrecovery.hxx') diff --git a/svx/source/inc/docrecovery.hxx b/svx/source/inc/docrecovery.hxx index a3f15b15f9ed..0d9b81b0a208 100644 --- a/svx/source/inc/docrecovery.hxx +++ b/svx/source/inc/docrecovery.hxx @@ -521,7 +521,7 @@ class RecoveryDialog : public Dialog virtual void start() override; virtual void end() override; - short execute(); + virtual short Execute() override; // helper private: -- cgit