diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-01 15:04:58 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:07 -0500 |
commit | 32f3f8826f396fd17c1c77770d073d0abf15c904 (patch) | |
tree | a1cb100c516af764e45e485a9e7d0785818aca0f /dom/html/nsHTMLDocument.h | |
parent | a2b56b295b8bd089b74c5d93148edafe7e6da912 (diff) | |
download | UXP-32f3f8826f396fd17c1c77770d073d0abf15c904.tar UXP-32f3f8826f396fd17c1c77770d073d0abf15c904.tar.gz UXP-32f3f8826f396fd17c1c77770d073d0abf15c904.tar.lz UXP-32f3f8826f396fd17c1c77770d073d0abf15c904.tar.xz UXP-32f3f8826f396fd17c1c77770d073d0abf15c904.zip |
Bug 1276438 part 2. Move the implementation of the .body setter from nsHTMLDocument to nsIDocument.
Tag UXP Issue #1344
Tag UXP Issue #252
Diffstat (limited to 'dom/html/nsHTMLDocument.h')
-rw-r--r-- | dom/html/nsHTMLDocument.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/nsHTMLDocument.h b/dom/html/nsHTMLDocument.h index 02fc22d42..c9e46b3fa 100644 --- a/dom/html/nsHTMLDocument.h +++ b/dom/html/nsHTMLDocument.h @@ -176,7 +176,7 @@ public: mozilla::ErrorResult& rv); void GetSupportedNames(nsTArray<nsString>& aNames); using nsIDocument::GetBody; - void SetBody(nsGenericHTMLElement* aBody, mozilla::ErrorResult& rv); + using nsIDocument::SetBody; mozilla::dom::HTMLSharedElement *GetHead() { return static_cast<mozilla::dom::HTMLSharedElement*>(GetHeadElement()); } |