From d5c447bd02ce654cb23d640d89bdcac6a3667856 Mon Sep 17 00:00:00 2001 From: "scc%netscape.com" Date: Thu, 27 Apr 2000 20:59:12 +0000 Subject: [PATCH] making string conversions explicit --- docshell/base/nsDocShell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp index e0cded61e98..a14e1d17fb6 100644 --- a/docshell/base/nsDocShell.cpp +++ b/docshell/base/nsDocShell.cpp @@ -705,7 +705,7 @@ NS_IMETHODIMP nsDocShell::FindItemWithName(const PRUnichar *aName, nsCOMPtr reqAsTreeItem(do_QueryInterface(aRequestor)); // First we check our name. - if(mName.Equals(aName)) + if(mName.EqualsWithConversion(aName)) { *_retval = NS_STATIC_CAST(nsIDocShellTreeItem*, this); NS_ADDREF(*_retval); @@ -902,7 +902,7 @@ NS_IMETHODIMP nsDocShell::FindChildWithName(const PRUnichar *aName, continue; child->GetName(getter_Copies(childName)); - if(name.Equals(childName)) + if(name.EqualsWithConversion(childName)) { *_retval = child; NS_ADDREF(*_retval);