backported style flags fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@23559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-09-13 11:05:52 +00:00
parent f8480f281c
commit e59fcce8b5
2 changed files with 10 additions and 8 deletions

View File

@@ -34,8 +34,10 @@ public:
wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER)
: wxPanel(parent, id, pos, size, style,
long style = 0)
// Always add the wxTAB_TRAVERSAL and wxNO_BORDER styles to what comes
// from the XRC if anything.
: wxPanel(parent, id, pos, size, style | wxTAB_TRAVERSAL | wxNO_BORDER,
controlName + wxT("_container")),
m_controlName(controlName), m_controlAdded(FALSE)
{
@@ -89,8 +91,7 @@ wxObject *wxUnknownWidgetXmlHandler::DoCreateResource()
new wxUnknownControlContainer(m_parentAsWindow,
GetName(), -1,
GetPosition(), GetSize(),
GetStyle(wxT("style"),
wxTAB_TRAVERSAL | wxNO_BORDER));
GetStyle(wxT("style")));
SetupWindow(panel);
return panel;
}

View File

@@ -34,8 +34,10 @@ public:
wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER)
: wxPanel(parent, id, pos, size, style,
long style = 0)
// Always add the wxTAB_TRAVERSAL and wxNO_BORDER styles to what comes
// from the XRC if anything.
: wxPanel(parent, id, pos, size, style | wxTAB_TRAVERSAL | wxNO_BORDER,
controlName + wxT("_container")),
m_controlName(controlName), m_controlAdded(FALSE)
{
@@ -89,8 +91,7 @@ wxObject *wxUnknownWidgetXmlHandler::DoCreateResource()
new wxUnknownControlContainer(m_parentAsWindow,
GetName(), -1,
GetPosition(), GetSize(),
GetStyle(wxT("style"),
wxTAB_TRAVERSAL | wxNO_BORDER));
GetStyle(wxT("style")));
SetupWindow(panel);
return panel;
}