diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-10 09:36:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-10 09:36:36 +0100 |
commit | f9cf4409ae72cef4a34f57d43d7bc174dbbb1bdd (patch) | |
tree | 16aa371d056e7fa8ecef9db80a5963dcd90eef9b /vcl/workben | |
parent | 4301696e6dba0b4e9bc5aa8c98c05e42529bd80c (diff) |
loplugin:saloverride
Change-Id: Id7de67480c6f8a31c7b7d6e560e6724fd09d8957
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/outdevgrind.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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<void, OutputDevice*> functor_type; |