]> git.saurik.com Git - wxWidgets.git/commitdiff
More style fixes
authorJulian Smart <julian@anthemion.co.uk>
Mon, 26 May 2003 22:59:24 +0000 (22:59 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 26 May 2003 22:59:24 +0000 (22:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/slider95.cpp
src/msw/tglbtn.cpp

index da71dcdfda83e7bd4a232a6331fc6f704f781ebf..6c811b81e04bf429cb85c6dd998fb6933916dd5a 100644 (file)
@@ -98,7 +98,9 @@ bool wxSlider95::Create(wxWindow *parent, wxWindowID id,
         msStyle |= SS_CENTER;
 
         WXDWORD exStyle = 0;
-        msStyle |= MSWGetStyle(GetWindowStyle(), & exStyle) ;
+        long valueStyle = m_windowStyle & ~wxBORDER_MASK;
+        valueStyle |= wxBORDER_SUNKEN;
+        msStyle |= MSWGetStyle(valueStyle, & exStyle) ;
 
         m_staticValue = (WXHWND) CreateWindowEx
             (
index cac34b1ac94b93674b2e608ea037b79cf29b37ce..b73b9aa4ebd4bfe5877bc3ff668c5e9ad7376d99 100644 (file)
@@ -73,6 +73,12 @@ bool wxToggleButton::Create(wxWindow *parent, wxWindowID id,
                             const wxValidator& validator,
                             const wxString& name)
 {
+    // default border for this control is none
+    if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
+    {
+        style |= wxBORDER_NONE;
+    }
+    
    if (!CreateBase(parent, id, pos, size, style, validator, name))
       return FALSE;