51
General (but related to Code::Blocks) / Re: New wxWidgets releases
« Last post by Miguel Gimenez on March 04, 2026, 11:46:26 am »I am sorry for the confussion with the extension.
Can you change (in wxschecklistbox.cpp:72) this
to this
In line 102 there is another if (), it is expected to fail but the error in line 72 should be gone.
Can you change (in wxschecklistbox.cpp:72) this
Code
if ( ArrayChecks[i] )
{
Codef( _T("%ACheck("));
}
Codef( _T("%AAppend(%t)"), ArrayChoices[i].wx_str());
if ( ArrayChecks[i] )
{
Codef(_T(")"));
}
Code
const bool Checked = ArrayChecks[i];
if ( Checked )
{
Codef( _T("%ACheck("));
}
Codef( _T("%AAppend(%t)"), ArrayChoices[i].wx_str());
if ( Checked )
{
Codef(_T(")"));
}
In line 102 there is another if (), it is expected to fail but the error in line 72 should be gone.
Recent Posts