Changes between Initial Version and Version 4 of Ticket #8535
- Timestamp:
- Jul 12, 2020, 12:07:54 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8535
- Property Owner changed from to
- Property Status new → assigned
- Property Milestone R1 → Unscheduled
-
Ticket #8535 – Description
initial v4 2 2 3 3 The 2 private functions are: 4 {{{ 5 #!div style="font-size: 80%" 4 6 5 They are declared in headers/private/interface/WindowInfo.h and implemented in InterfaceDefs.cpp 7 {{{#!c++ 6 7 {{{#!c++ 8 8 do_minimize_team(...); 9 9 do_bring_to_front_team(...); 10 }}}11 10 }}} 12 13 11 14 12 I would be nice if these could be exposed as public APIs in BRoster (which already has the related public function): 15 13 16 {{{ 17 #!div style="font-size: 100%" 18 {{{#!c++ 14 {{{#!c++ 19 15 status_t ActivateApp(team_id team) const; 20 }}}21 16 }}} 22 17 … … 25 20 It was proposed as a start that we create 2 new '''public''' functions in BRoster: 26 21 27 {{{ 28 #!div style="font-size: 100%" 29 {{{#!c++ 22 {{{#!c++ 30 23 status_t HideTeam(team_id team); 31 24 status_t BringTeamToFront(team_id team); 32 }}}33 25 }}}