Fixing build bustage, added missing .get() in a nsCOMPtr comparison. r=vidur@netscape.com
git-svn-id: svn://10.0.0.236/trunk@58792 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -7276,7 +7276,7 @@ nsHTMLEditor::GetNextElementByTagName(nsIDOMElement *aCurrentElement,
|
||||
|
||||
nsCOMPtr<nsIAtom> atom = GetTag(currentNode);
|
||||
|
||||
if (tagAtom==atom)
|
||||
if (tagAtom==atom.get())
|
||||
{
|
||||
nsCOMPtr<nsIDOMElement> element = do_QueryInterface(currentNode);
|
||||
if (!element) return NS_ERROR_NULL_POINTER;
|
||||
|
||||
Reference in New Issue
Block a user