Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Spam reported to moderator.
2
For questions like this, clear formatting really matters. Keeping multiline strings readable in code makes maintenance easier, similar to how tools like https://www.remakerai.pro
 help present complex content in a cleaner, more understandable way without changing the original meaning.
3
CodeCompletion redesign / Re: Seattle-Towncar - Channel on Coub
« Last post by ollydbg on Yesterday at 11:55:43 am »
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.

spam reported
4
Development / Re: wxSmith use bad constructor for wxStaticBoxSizer
« Last post by Bug Killer on Yesterday at 11:08:39 am »
Fixed in r13767.

Works fine on AlmaLinux 9 with wxWidgets 3.3.1. Don't forget to modify slightly all the dialogs, frames and panels. I just add a space somewhere and remove it.
5
CodeCompletion redesign / Seattle-Towncar - Channel on Coub
« Last post by Jamesboort on January 13, 2026, 11:03:02 pm »
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.
6
Development / Re: wxSmith use bad constructor for wxStaticBoxSizer
« Last post by LR83 on January 13, 2026, 05:38:33 pm »
Great, work fine  :)
But I suggest using a temporary variable because wxStaticBoxSizer can have many children.
So, code could be:
In wxStaticBoxSizer.cpp:
Code
        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;
        }

in wxSizer.cpp:
Code
        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());
        }
7
General (but related to Code::Blocks) / Re: Welcome Newcomers - PLEASE READ!!!
« Last post by MokpotheMighty on January 13, 2026, 04:21:59 pm »
Yeah, it's me, Im here and I'm new.

Speaking of, I'm trying to reply to my own thread with more info about the issue I ran into, but it's not letting me for some reason.

So I'm kind of posting here as a test to see if I can't post on this forum at all, or just here.

By the way, the anti spam filter still considers the last year to be 2024?  :o
8
Development / Re: wxSmith use bad constructor for wxStaticBoxSizer
« Last post by Miguel Gimenez on January 12, 2026, 03:59:40 pm »
Fixed in r13767.
9
Spam reported to moderator.
10
General (but related to Code::Blocks) / Re: seattletowncar - Project Noah
« Last post by Miguel Gimenez on January 11, 2026, 10:09:32 am »
Spam reported to moderator.
Pages: [1] 2 3 4 5 6 ... 10