mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-07-15 08:07:40 +00:00
Update tab manager
This commit is contained in:
parent
3b7cc1c847
commit
273610cb0f
3 changed files with 18 additions and 4 deletions
|
@ -7,13 +7,13 @@ BaseTab::BaseTab(wxFrame *parent, std::string base_file)
|
|||
|
||||
// Games tab
|
||||
games_tab=new BaseGameTab((wxFrame *)notebook,base_file);
|
||||
notebook->AddPage(games_tab, "Games",true); // true for selecting the tab
|
||||
notebook->AddPage(games_tab, "Games list",true); // true for selecting the tab
|
||||
// Import tab
|
||||
import_tab=new BaseImportTab((wxFrame *)notebook);
|
||||
notebook->AddPage(import_tab, "Import");
|
||||
notebook->AddPage(import_tab, "Import games");
|
||||
// Manage tab
|
||||
manage_tab=new BaseManageTab((wxFrame *)notebook);
|
||||
notebook->AddPage(manage_tab, "Manage");
|
||||
notebook->AddPage(manage_tab, "Manage database");
|
||||
|
||||
RefreshLabel();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue