From 239229258a4be7c898539889d33df2f673b1b9bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 6 May 2001 22:22:39 +0000 Subject: [PATCH] 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 --- contrib/src/xml/xh_panel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.2