From: Václav Slavík Date: Sun, 6 May 2001 22:22:39 +0000 (+0000) Subject: wxTAB_TRAVERSAL is default style for wxPanels from XRC X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/239229258a4be7c898539889d33df2f673b1b9bd wxTAB_TRAVERSAL is default style for wxPanels from XRC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10027 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/xml/xh_panel.cpp b/contrib/src/xml/xh_panel.cpp index 2c870618e5..71c6998b0b 100644 --- a/contrib/src/xml/xh_panel.cpp +++ b/contrib/src/xml/xh_panel.cpp @@ -42,13 +42,13 @@ wxObject *wxPanelXmlHandler::DoCreateResource() panel = new wxPanel(m_parentAsWindow, GetID(), GetPosition(), GetSize(), - GetStyle(wxT("style"), 0), + GetStyle(wxT("style"), wxTAB_TRAVERSAL), GetName()); else panel->Create(m_parentAsWindow, GetID(), GetPosition(), GetSize(), - GetStyle(wxT("style"), 0), + GetStyle(wxT("style"), wxTAB_TRAVERSAL), GetName()); SetupWindow(panel); CreateChildren(panel);