From ebfc214808429624235521bc7946551063e82cb0 Mon Sep 17 00:00:00 2001
From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Fri, 14 Sep 2007 01:08:55 +0000
Subject: [PATCH] use wxBORDER_NONE as border default for wxStatusBar: this
 generally makes sense and also fixes the display problem of the status bars
 under Windows when using themes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48666 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 include/wx/statusbr.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/wx/statusbr.h b/include/wx/statusbr.h
index 8d7594ac78..1a136a0c62 100644
--- a/include/wx/statusbr.h
+++ b/include/wx/statusbr.h
@@ -97,6 +97,7 @@ public:
     // don't want status bars to accept the focus at all
     virtual bool AcceptsFocus() const { return false; }
 
+    virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
     virtual bool CanBeOutsideClientArea() const { return true; }
 
 protected:
-- 
2.47.2