aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/GameTab.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-28 20:16:57 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-28 20:16:57 +0100
commit44ea0a50a39d58cb9e1f167c2973e396b4d853aa (patch)
tree14cae56496eb72816f6f3d8b2323e6abfa79f200 /src/game_tab/GameTab.cpp
parent4c959fe12ed2f26cbfac9646d3488cb00676fb31 (diff)
Migrate to std::shared_ptr<Game>
Diffstat (limited to 'src/game_tab/GameTab.cpp')
-rw-r--r--src/game_tab/GameTab.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/game_tab/GameTab.cpp b/src/game_tab/GameTab.cpp
index 769681c..55d7848 100644
--- a/src/game_tab/GameTab.cpp
+++ b/src/game_tab/GameTab.cpp
@@ -3,7 +3,7 @@
wxDEFINE_EVENT(GAME_CHANGE, wxCommandEvent);
-GameTab::GameTab(wxFrame *parent, Game *game)
+GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
: wxPanel(parent), game(game), TabInfos(TabInfos::GAME) {
// Splitter
wxSplitterWindow *splitter = new wxSplitterWindow(this, wxID_ANY);
@@ -30,10 +30,6 @@ GameTab::GameTab(wxFrame *parent, Game *game)
Bind(GAME_CHANGE, &GameTab::OnGameChange, this, wxID_ANY);
}
-GameTab::~GameTab() {
- delete game;
-}
-
void GameTab::OnGameChange(wxCommandEvent &event) {
board_panel->Notify();
editor_panel->Notify();