XRC assigns ID to wxStaticBox created by including wxStaticBoxSizer (did what patch 632470 was supposed to do) (backported from the trunk)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -150,7 +150,12 @@ wxObject *wxSizerXmlHandler::DoCreateResource()
|
|||||||
else if (m_class == wxT("wxStaticBoxSizer"))
|
else if (m_class == wxT("wxStaticBoxSizer"))
|
||||||
{
|
{
|
||||||
sizer = new wxStaticBoxSizer(
|
sizer = new wxStaticBoxSizer(
|
||||||
new wxStaticBox(m_parentAsWindow, -1, GetText(wxT("label"))),
|
new wxStaticBox(m_parentAsWindow,
|
||||||
|
GetID(),
|
||||||
|
GetText(wxT("label")),
|
||||||
|
wxDefaultPosition, wxDefaultSize,
|
||||||
|
0/*style*/,
|
||||||
|
GetName()),
|
||||||
GetStyle(wxT("orient"), wxHORIZONTAL));
|
GetStyle(wxT("orient"), wxHORIZONTAL));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -150,7 +150,12 @@ wxObject *wxSizerXmlHandler::DoCreateResource()
|
|||||||
else if (m_class == wxT("wxStaticBoxSizer"))
|
else if (m_class == wxT("wxStaticBoxSizer"))
|
||||||
{
|
{
|
||||||
sizer = new wxStaticBoxSizer(
|
sizer = new wxStaticBoxSizer(
|
||||||
new wxStaticBox(m_parentAsWindow, -1, GetText(wxT("label"))),
|
new wxStaticBox(m_parentAsWindow,
|
||||||
|
GetID(),
|
||||||
|
GetText(wxT("label")),
|
||||||
|
wxDefaultPosition, wxDefaultSize,
|
||||||
|
0/*style*/,
|
||||||
|
GetName()),
|
||||||
GetStyle(wxT("orient"), wxHORIZONTAL));
|
GetStyle(wxT("orient"), wxHORIZONTAL));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user