mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 825341 - fix rebase of WrapObject landing on a CLOSED TREE
This commit is contained in:
parent
3de595d32e
commit
ce1d771eae
@ -37,9 +37,9 @@
|
||||
using namespace mozilla;
|
||||
|
||||
JSObject*
|
||||
nsRange::WrapObject(JSContext* aCx, JSObject* aScope, bool* aTriedToWrap)
|
||||
nsRange::WrapObject(JSContext* aCx, JSObject* aScope)
|
||||
{
|
||||
return dom::RangeBinding::Wrap(aCx, aScope, this, aTriedToWrap);
|
||||
return dom::RangeBinding::Wrap(aCx, aScope, this);
|
||||
}
|
||||
|
||||
/******************************************************
|
||||
|
@ -196,8 +196,7 @@ public:
|
||||
already_AddRefed<nsClientRectList> GetClientRects(ErrorResult& aErr);
|
||||
|
||||
nsINode* GetParentObject() const { return mOwner; }
|
||||
virtual JSObject* WrapObject(JSContext* cx, JSObject* scope, bool* tried)
|
||||
MOZ_OVERRIDE MOZ_FINAL;
|
||||
virtual JSObject* WrapObject(JSContext* cx, JSObject* scope) MOZ_OVERRIDE MOZ_FINAL;
|
||||
|
||||
private:
|
||||
// no copy's or assigns
|
||||
|
Loading…
Reference in New Issue
Block a user