Author Topic: Order of new wxSmith widgets (r12448), @bluehazzard  (Read 6175 times)

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Order of new wxSmith widgets (r12448), @bluehazzard
« 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

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Order of new wxSmith widgets (r12448), @bluehazzard
« Reply #1 on: May 17, 2021, 05:44:08 pm »
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Re: Order of new wxSmith widgets (r12448), @bluehazzard
« Reply #2 on: May 17, 2021, 06:21:55 pm »
Looks like a backslash is missing at the end of Makefile.am:206.

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: Order of new wxSmith widgets (r12448), @bluehazzard
« Reply #3 on: May 17, 2021, 06:30:52 pm »
Ahhh yes.... will fix it as soon as i am on my machine......


Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: Order of new wxSmith widgets (r12448), @bluehazzard
« Reply #4 on: May 18, 2021, 12:24:30 am »
ok fixed  in r12449