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:
jst%citec.fi
2000-01-26 16:01:49 +00:00
parent e5a37ead0f
commit 3ebf111e7f
2 changed files with 2 additions and 2 deletions

View File

@@ -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;