Author Topic: svn14014 regression: cb compile syntax error  (Read 52 times)

Offline blauzahn

  • Almost regular
  • **
  • Posts: 236
svn14014 regression: cb compile syntax error
« on: Yesterday at 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.