Use names from 1996 sources (#437)

This commit is contained in:
Christian Semmler
2024-01-14 16:49:11 -05:00
committed by GitHub
parent 7e9d3bde65
commit dd72bcc666
16 changed files with 63 additions and 63 deletions

View File

@@ -29,7 +29,7 @@ MxResult LegoPathPresenter::AddToManager()
MxResult status = FAILURE;
if (VideoManager()) {
VideoManager()->AddPresenter(*this);
VideoManager()->RegisterPresenter(*this);
status = SUCCESS;
}
@@ -40,7 +40,7 @@ MxResult LegoPathPresenter::AddToManager()
void LegoPathPresenter::Destroy(MxBool p_fromDestructor)
{
if (VideoManager())
VideoManager()->RemovePresenter(*this);
VideoManager()->UnregisterPresenter(*this);
{
MxAutoLocker lock(&this->m_criticalSection);