1
General (but related to Code::Blocks) / Re: neatest way to add multiline text to wxMessageDialog
« Last post by Miguel Gimenez on Today at 08:32:29 am »Spam reported to moderator.
When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
Offcourse user profile page for “seattle-towncar”, typically used for sharing curated lists/links and personal profile info. It’s a profile hub rather than a directory listing. Open: Seattle-towncar on Offcourse.
Fixed in r13767.

case wxsCPP:
{
AddHeader(_T("<wx/sizer.h>"),GetInfo().ClassName,hfInPCH);
AddHeader(_T("<wx/statbox.h>"),GetInfo().ClassName,hfInPCH);
Codef(_T("%C(%s, %W, %t);\n"),
(Orient == wxHORIZONTAL) ? _T("wxHORIZONTAL") : _T("wxVERTICAL"),
Label.wx_str());
Codef(_T("wxStaticBox *SB_%s = %s->GetStaticBox();\n"),GetVarName().wx_str(),GetVarName().wx_str());
return;
} if (GetInfo().ClassName == "wxStaticBoxSizer")
{
// Use the static box as parent, as required by wxWidgets since 2.9.1
wxsCoderContext* context = GetCoderContext();
const wxString saveParent(context->m_WindowParent);
context->m_WindowParent = "SB_" + GetVarName();
Child->BuildCode(context);
context->m_WindowParent = saveParent;
}
else
{
// Using same parent as we got, sizer is not a parent window
Child->BuildCode(GetCoderContext());
}