From f9cf4409ae72cef4a34f57d43d7bc174dbbb1bdd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 10 Nov 2014 09:36:13 +0100 Subject: loplugin:saloverride Change-Id: Id7de67480c6f8a31c7b7d6e560e6724fd09d8957 --- vcl/workben/outdevgrind.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/workben') diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx index f857afe6a5af..cbcd1c555e85 100644 --- a/vcl/workben/outdevgrind.cxx +++ b/vcl/workben/outdevgrind.cxx @@ -57,8 +57,8 @@ namespace class GrindApp : public Application { public: - virtual int Main(); - virtual sal_uInt16 Exception( sal_uInt16 nError ); + virtual int Main() SAL_OVERRIDE; + virtual sal_uInt16 Exception( sal_uInt16 nError ) SAL_OVERRIDE; }; class TestWindow : public Dialog @@ -73,7 +73,7 @@ class TestWindow : public Dialog } virtual ~TestWindow() {} - virtual void Paint( const Rectangle& rRect ); + virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; }; typedef boost::function1 functor_type; -- cgit