making string conversions explicit

This commit is contained in:
scc%netscape.com 2000-04-27 20:50:34 +00:00
Родитель 4e1b0eaca0
Коммит 6a250f560d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -411,7 +411,7 @@ NS_IMETHODIMP nsXBLService::GetBinding(const nsCString& aURLStr, nsIXBLBinding**
// If no ref is specified just use this.
if ((bindingName.IsEmpty()) || (bindingName == value)) {
child->SetAttribute(kNameSpaceID_None, kURIAtom, aURLStr, PR_FALSE);
child->SetAttribute(kNameSpaceID_None, kURIAtom, NS_ConvertASCIItoUCS2(aURLStr.GetBuffer(), aURLStr.Length()), PR_FALSE);
// Make a new binding
NS_NewXBLBinding(aResult);

Просмотреть файл

@ -411,7 +411,7 @@ NS_IMETHODIMP nsXBLService::GetBinding(const nsCString& aURLStr, nsIXBLBinding**
// If no ref is specified just use this.
if ((bindingName.IsEmpty()) || (bindingName == value)) {
child->SetAttribute(kNameSpaceID_None, kURIAtom, aURLStr, PR_FALSE);
child->SetAttribute(kNameSpaceID_None, kURIAtom, NS_ConvertASCIItoUCS2(aURLStr.GetBuffer(), aURLStr.Length()), PR_FALSE);
// Make a new binding
NS_NewXBLBinding(aResult);