From 46535551524ce753f57d3867ad7d44048bed5fcb 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 e0cded61e985..a14e1d17fb6b 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);