From 273610cb0f848fd99f9b9769f0d60b6e2df590ed Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sat, 24 Dec 2022 10:26:05 +0100 Subject: Update tab manager --- src/base_tab/BaseTab.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/base_tab/BaseTab.cpp') diff --git a/src/base_tab/BaseTab.cpp b/src/base_tab/BaseTab.cpp index 2895e27..a76ba38 100644 --- a/src/base_tab/BaseTab.cpp +++ b/src/base_tab/BaseTab.cpp @@ -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(); } -- cgit v1.2.3