This commit is contained in:
varada%netscape.com 1999-10-13 21:30:51 +00:00
parent 89cd3b1c75
commit 729d73ac14

View File

@ -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;
}