Bug 390042 - mingw build error - error: no matching function for call to nsAutoString::nsAutoString(jschar*), r=mrbkap, sr=jst, a=jst

This commit is contained in:
martijn.martijn@gmail.com 2007-08-03 03:15:36 -07:00
Родитель 91af625050
Коммит 818fac589b
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -205,7 +205,8 @@ IsValFrame(JSContext *cx, JSObject *obj, jsval v, XPCWrappedNative *wn)
if (JSVAL_IS_INT(v)) {
col->Item(JSVAL_TO_INT(v), getter_AddRefs(domwin));
} else {
nsAutoString str(JS_GetStringChars(JSVAL_TO_STRING(v)));
nsAutoString str(reinterpret_cast<PRUnichar *>
(JS_GetStringChars(JSVAL_TO_STRING(v))));
col->NamedItem(str, getter_AddRefs(domwin));
}