mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-02 12:07:52 +00:00
fix for bug #6569
This commit is contained in:
parent
89cd3b1c75
commit
729d73ac14
@ -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;
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user