vcl/inc/win/wingdiimpl.hxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 1b04fbca0dc7a49aa5acc799396ef993471a992d
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Mar 14 20:40:53 2022 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Tue Mar 15 09:40:50 2022 +0100

    drop some redundant semicolons
    
    Change-Id: Ib09ac9cfec70f803b23b28b0c0a8031620436e9f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131563
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/vcl/inc/win/wingdiimpl.hxx b/vcl/inc/win/wingdiimpl.hxx
index 6fc08f0a355a..5abf86e6e36f 100644
--- a/vcl/inc/win/wingdiimpl.hxx
+++ b/vcl/inc/win/wingdiimpl.hxx
@@ -19,7 +19,7 @@ class ControlCacheKey;
 class WinSalGraphicsImplBase
 {
 public:
-    virtual ~WinSalGraphicsImplBase(){};
+    virtual ~WinSalGraphicsImplBase() {}
 
     // If true is returned, the following functions are used for drawing 
controls.
     virtual bool UseRenderNativeControl() const { return false; }
@@ -27,17 +27,17 @@ public:
                                               int /*nX*/, int /*nY*/)
     {
         abort();
-    };
+    }
     virtual bool RenderAndCacheNativeControl(CompatibleDC& /*rWhite*/, 
CompatibleDC& /*rBlack*/,
                                              int /*nX*/, int /*nY*/,
                                              ControlCacheKey& 
/*aControlCacheKey*/)
     {
         abort();
-    };
+    }
 
-    virtual void ClearDevFontCache(){};
+    virtual void ClearDevFontCache() {}
 
-    virtual void Flush(){};
+    virtual void Flush() {}
 
     // Implementation for WinSalGraphics::DrawTextLayout().
     // Returns true if handled, if false, then WinSalGraphics will handle it 
itself.

Reply via email to