mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-29 17:40:42 +00:00
Fixed regression introduced by the renaming of nsDeque::Pop()
to nsDeque::PopFront().
This commit is contained in:
parent
185d275e96
commit
17208b294c
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user