mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1183085 - Update description for nsDisplayList methods; r=roc
AppendNewToTop and AppendNewToBottom do not return NS_ERROR_OUT_OF_MEMORY now.
This commit is contained in:
parent
58c790fc94
commit
2726b1a925
@ -1615,8 +1615,8 @@ public:
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a new item to the top of the list. If the item is null we return
|
||||
* NS_ERROR_OUT_OF_MEMORY. The intended usage is AppendNewToTop(new ...);
|
||||
* Append a new item to the top of the list. The intended usage is
|
||||
* AppendNewToTop(new ...);
|
||||
*/
|
||||
void AppendNewToTop(nsDisplayItem* aItem) {
|
||||
if (aItem) {
|
||||
@ -1625,8 +1625,8 @@ public:
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a new item to the bottom of the list. If the item is null we return
|
||||
* NS_ERROR_OUT_OF_MEMORY. The intended usage is AppendNewToBottom(new ...);
|
||||
* Append a new item to the bottom of the list. The intended usage is
|
||||
* AppendNewToBottom(new ...);
|
||||
*/
|
||||
void AppendNewToBottom(nsDisplayItem* aItem) {
|
||||
if (aItem) {
|
||||
|
Loading…
Reference in New Issue
Block a user