aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/BaseTab.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-24 22:30:20 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-24 22:30:20 +0100
commitd298c59206ccb8c3e511fad9884e1cb0bd98b793 (patch)
treef2c725e865522c7430566a54e89c3426e799bf66 /src/base_tab/BaseTab.cpp
parent418b2e7f600551062af6beb81cd105287d9ce59a (diff)
Update db management
Diffstat (limited to 'src/base_tab/BaseTab.cpp')
-rw-r--r--src/base_tab/BaseTab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base_tab/BaseTab.cpp b/src/base_tab/BaseTab.cpp
index a2b7207..06774b4 100644
--- a/src/base_tab/BaseTab.cpp
+++ b/src/base_tab/BaseTab.cpp
@@ -6,7 +6,7 @@ BaseTab::BaseTab(wxFrame *parent, std::string base_file)
: TabBase(parent), TabInfos(TabInfos::BASE){
// Games tab
- games_tab=new BaseGameTab((wxFrame *)notebook,base_file);
+ games_tab=new BaseGameTab((wxFrame *)notebook,base_file,this);
notebook->AddPage(games_tab, "Games list",true); // true for selecting the tab
// Import tab
import_tab=new BaseImportTab((wxFrame *)notebook);