Fixed regression introduced by the renaming of nsDeque::Pop()

to nsDeque::PopFront().
This commit is contained in:
kin%netscape.com 1999-02-04 17:36:24 +00:00
parent 185d275e96
commit 17208b294c

View File

@ -66,7 +66,7 @@ nsTransactionStack::PopBottom(nsTransactionItem **aTransaction)
/* nsDeque is a FIFO, so the bottom of our stack is actually
* the front of the deque.
*/
*aTransaction = (nsTransactionItem *)mQue.Pop();
*aTransaction = (nsTransactionItem *)mQue.PopFront();
return NS_OK;
}