[Libreoffice-commits] core.git: vcl/workben

Stephan Bergmann sbergman at redhat.com
Mon Nov 10 00:37:01 PST 2014


 vcl/workben/outdevgrind.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f9cf4409ae72cef4a34f57d43d7bc174dbbb1bdd
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Nov 10 09:36:13 2014 +0100

    loplugin:saloverride
    
    Change-Id: Id7de67480c6f8a31c7b7d6e560e6724fd09d8957

diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx
index f857afe..cbcd1c5 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;


More information about the Libreoffice-commits mailing list