Make wxToolBar styles consistent and add wxTB_DEFAULT_STYLE.
Don't include wxBORDER_NONE in neither wxToolBar ctor and Create() nor wxFrame::CreateToolBar() flags parameter, override GetDefaultBorder() in wxToolBar itself instead to use the border style appropriate for the current platform by default. This has the same effect -- the default border style is used unless another one is explicitly specified -- but is more clear and consistent. Also add wxTB_DEFAULT_STYLE for consistency with the other classes. Closes #15037. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -35,7 +35,7 @@ public:
|
||||
,wxWindowID vId
|
||||
,const wxPoint& rPos = wxDefaultPosition
|
||||
,const wxSize& rSize = wxDefaultSize
|
||||
,long lStyle = wxNO_BORDER | wxTB_HORIZONTAL
|
||||
,long lStyle = wxTB_HORIZONTAL
|
||||
,const wxString& rName = wxToolBarNameStr
|
||||
) : m_vToolTimer(this, ID_TOOLTIMER)
|
||||
, m_vToolExpTimer(this, ID_TOOLEXPTIMER)
|
||||
@@ -55,7 +55,7 @@ public:
|
||||
,wxWindowID vId
|
||||
,const wxPoint& rPos = wxDefaultPosition
|
||||
,const wxSize& rSize = wxDefaultSize
|
||||
,long lStyle = wxNO_BORDER | wxTB_HORIZONTAL
|
||||
,long lStyle = wxTB_HORIZONTAL
|
||||
,const wxString& rName = wxToolBarNameStr
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user