aboutsummaryrefslogtreecommitdiff
path: root/src/engine_tab/EngineTab.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine_tab/EngineTab.hpp')
-rw-r--r--src/engine_tab/EngineTab.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine_tab/EngineTab.hpp b/src/engine_tab/EngineTab.hpp
index 711c3c7..975ddf6 100644
--- a/src/engine_tab/EngineTab.hpp
+++ b/src/engine_tab/EngineTab.hpp
@@ -9,14 +9,14 @@ wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
class EngineTab : public TabEngine, public TabInfos {
uciadapter::UCI *engine;
std::string confGroup, enginePath;
- std::string engineName;
+ std::uint32_t engine_id;
void InitConfiguration();
void LoadConfiguration();
void RefreshItemList();
public:
EngineTab(wxWindow *parent, uciadapter::UCI *engine,
- std::string engine_path_or_name);
- EngineTab(wxWindow *parent, std::string name);
+ std::string engine_path);
+ EngineTab(wxWindow *parent, std::uint32_t id);
~EngineTab();
void ApplyPreferences() {}
std::shared_ptr<Game> GetGame() { return nullptr; }