Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: Miguel Gimenez on May 17, 2021, 09:22:21 am

Title: Order of new wxSmith widgets (r12448), @bluehazzard
Post by: Miguel Gimenez on May 17, 2021, 09:22:21 am
Commits in Sourceforge do not allow comments, so I comment here.

The newly added wxDataView... widgets are out of order, they should use priority numbers between 280 and 270 so they appear between ContextHelpButton and Gauge:

Code
wxsRegisterItem<wxsContextHelpButton> Reg(_T("ContextHelpButton"),wxsTWidget,_T("Standard"), 280);
Code
wxsRegisterItem<wxsGauge> Reg(_T("Gauge"),wxsTWidget,_T("Standard"),270);

Thank you
Title: Re: Order of new wxSmith widgets (r12448), @bluehazzard
Post by: oBFusCATed on May 17, 2021, 05:44:08 pm
Also the build seems to be broken: https://travis-ci.org/github/obfuscated/codeblocks_sf/builds
Title: Re: Order of new wxSmith widgets (r12448), @bluehazzard
Post by: Miguel Gimenez on May 17, 2021, 06:21:55 pm
Looks like a backslash is missing at the end of Makefile.am:206.
Title: Re: Order of new wxSmith widgets (r12448), @bluehazzard
Post by: BlueHazzard on May 17, 2021, 06:30:52 pm
Ahhh yes.... will fix it as soon as i am on my machine......

Title: Re: Order of new wxSmith widgets (r12448), @bluehazzard
Post by: BlueHazzard on May 18, 2021, 12:24:30 am
ok fixed  in r12449