diff --git a/ComponentBasic/EntityDocks.cpp b/ComponentBasic/EntityDocks.cpp index c91a77f..5767ebe 100644 --- a/ComponentBasic/EntityDocks.cpp +++ b/ComponentBasic/EntityDocks.cpp @@ -49,7 +49,7 @@ DeduceFramework::DeduceFramework() :_factory_ins(std::make_shared()) { } -void DeduceFramework::init_backend() +void DeduceFramework::init_framework() { auto mgr_e = std::make_shared(); mgr_e->append(this->shared_from_this()); diff --git a/SimsWorld/sims_world.cpp b/SimsWorld/sims_world.cpp index c5d52e7..b6f8861 100644 --- a/SimsWorld/sims_world.cpp +++ b/SimsWorld/sims_world.cpp @@ -6,7 +6,7 @@ SimsWorld::SimsWorld(QWidget *parent) { ui.setupUi(this); - _backend_ins->init_backend(); + _backend_ins->init_framework(); } SimsWorld::~SimsWorld()