From 907990f8d7608842e3083592416c336330cc1b02 Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Fri, 2 Sep 2011 23:15:24 -0400 Subject: [PATCH] Fix trunk bustage caused by bug 683852 landing in mozilla-central. a=bustage fix for CLOSED TREE --- mailnews/import/eudora/src/nsEudoraEditor.cpp | 5 +++++ mailnews/import/outlook/src/nsOutlookEditor.cpp | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/mailnews/import/eudora/src/nsEudoraEditor.cpp b/mailnews/import/eudora/src/nsEudoraEditor.cpp index 4b81736420..33165152db 100644 --- a/mailnews/import/eudora/src/nsEudoraEditor.cpp +++ b/mailnews/import/eudora/src/nsEudoraEditor.cpp @@ -1516,6 +1516,11 @@ NS_IMETHODIMP nsEudoraHTMLImageElement::IsSameNode(nsIDOMNode *other, PRBool *_r return NS_ERROR_NOT_IMPLEMENTED; } +NS_IMETHODIMP nsEudoraHTMLImageElement::Contains(nsIDOMNode* aOther, PRBool* aReturn) +{ + return NS_ERROR_NOT_IMPLEMENTED; +} + NS_IMETHODIMP nsEudoraHTMLImageElement::LookupPrefix(const nsAString & namespaceURI, nsAString & _retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; diff --git a/mailnews/import/outlook/src/nsOutlookEditor.cpp b/mailnews/import/outlook/src/nsOutlookEditor.cpp index 621def2bc0..9c79a106bc 100644 --- a/mailnews/import/outlook/src/nsOutlookEditor.cpp +++ b/mailnews/import/outlook/src/nsOutlookEditor.cpp @@ -1194,6 +1194,11 @@ NS_IMETHODIMP nsOutlookHTMLImageElement::IsSameNode(nsIDOMNode *other, PRBool *_ return NS_ERROR_NOT_IMPLEMENTED; } +NS_IMETHODIMP nsOutlookHTMLImageElement::Contains(nsIDOMNode* aOther, PRBool* aReturn) +{ + return NS_ERROR_NOT_IMPLEMENTED; +} + NS_IMETHODIMP nsOutlookHTMLImageElement::LookupPrefix(const nsAString & namespaceURI, nsAString & _retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED;