Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: blauzahn on September 11, 2026, 11:25:29 pm

Title: svn14014 regression: cb compile syntax error
Post by: blauzahn on September 11, 2026, 11:25:29 pm
in pluginsconfigurationdlg.cpp:41

Code
#if wxCHECK_VERSION(3, 3, 2)
    const bool IsDark = wxSystemSettings::GetAppearance()IsDark();
#else
    const bool IsDark = false;
#endif

There is a point missing before IsDark();

Should be:

Code
const bool IsDark = wxSystemSettings::GetAppearance().IsDark();

Thank you.