aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/BaseTab.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-23 18:23:05 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-23 18:23:05 +0100
commit3b7cc1c847f4bc8ec900b01a2bcee0cb90d4bd39 (patch)
tree530f375ef8f6943525139b5f3f8d40cef711fecb /src/base_tab/BaseTab.cpp
parentc49b48df010c97553aec80491c8fb505e21bcbf1 (diff)
Improve db tab
Diffstat (limited to 'src/base_tab/BaseTab.cpp')
-rw-r--r--src/base_tab/BaseTab.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/base_tab/BaseTab.cpp b/src/base_tab/BaseTab.cpp
index 67577e0..2895e27 100644
--- a/src/base_tab/BaseTab.cpp
+++ b/src/base_tab/BaseTab.cpp
@@ -8,10 +8,12 @@ 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
-
// Import tab
import_tab=new BaseImportTab((wxFrame *)notebook);
notebook->AddPage(import_tab, "Import");
+ // Manage tab
+ manage_tab=new BaseManageTab((wxFrame *)notebook);
+ notebook->AddPage(manage_tab, "Manage");
RefreshLabel();
}