This commit is contained in:
varada%netscape.com 1999-10-13 21:30:51 +00:00
Родитель e034619875
Коммит f55af801ff
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -872,10 +872,11 @@ BOOL CWizardMachineApp::GoToNextNode()
if (IsNewValue)
CreateNewCache();
if (!theInterpreter->interpret(tempNode->navControls->onEnter, NULL))
CurrentNode = tempNode;
if (!theInterpreter->interpret(CurrentNode->navControls->onEnter, NULL))
return FALSE;
CurrentNode = tempNode;
return TRUE;
}
@ -966,10 +967,11 @@ BOOL CWizardMachineApp::GoToPrevNode()
if (IsNewValue)
CreateNewCache();
if (!theInterpreter->interpret(tempNode->navControls->onEnter, NULL))
return FALSE;
CurrentNode = tempNode;
if (!theInterpreter->interpret(CurrentNode->navControls->onEnter, NULL))
return FALSE;
return TRUE;
}