[email protected] 413 B

1234
  1. /******************************************************************************/
  2. template<int i> Str GuiView::TabsTabText(C Tabs &tabs ) {return InRange(i, tabs) ? tabs.tab(i).text( ) : S;}
  3. template<int i> void GuiView::TabsTabText( Tabs &tabs, C Str &t) { if(InRange(i, tabs)) tabs.tab(i).text(t); }
  4. /******************************************************************************/