diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-28 20:16:57 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-28 20:16:57 +0100 |
| commit | 44ea0a50a39d58cb9e1f167c2973e396b4d853aa (patch) | |
| tree | 14cae56496eb72816f6f3d8b2323e6abfa79f200 /src/game_tab/left_panel/GameTabLeftPanel.cpp | |
| parent | 4c959fe12ed2f26cbfac9646d3488cb00676fb31 (diff) | |
Migrate to std::shared_ptr<Game>
Diffstat (limited to 'src/game_tab/left_panel/GameTabLeftPanel.cpp')
| -rw-r--r-- | src/game_tab/left_panel/GameTabLeftPanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game_tab/left_panel/GameTabLeftPanel.cpp b/src/game_tab/left_panel/GameTabLeftPanel.cpp index d4c415d..a32ab23 100644 --- a/src/game_tab/left_panel/GameTabLeftPanel.cpp +++ b/src/game_tab/left_panel/GameTabLeftPanel.cpp @@ -1,7 +1,7 @@ #include "GameTabLeftPanel.hpp" #include <wx/clipbrd.h> -GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, Game *game) +GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game) : TabGameLeftPanel(parent), game(game) { // Add board |
