fixed problem in testCRT. GetUnicode returns a const ptr

This commit is contained in:
rickg%netscape.com 1998-08-03 21:33:32 +00:00
Родитель 7d0d70355e
Коммит 354b1357dd
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -32,8 +32,8 @@ static void Check(const char* s1, const char* s2, PRIntn n)
PRIntn clib_case_n = PL_strncasecmp(s1, s2, n);
nsAutoString t1(s1), t2(s2);
PRUnichar* us1 = t1.GetUnicode();
PRUnichar* us2 = t2.GetUnicode();
const PRUnichar* us1 = t1.GetUnicode();
const PRUnichar* us2 = t2.GetUnicode();
PRIntn u = nsCRT::strcmp(us1, s2);
PRIntn u_n = nsCRT::strncmp(us1, s2, n);

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

@ -32,8 +32,8 @@ static void Check(const char* s1, const char* s2, PRIntn n)
PRIntn clib_case_n = PL_strncasecmp(s1, s2, n);
nsAutoString t1(s1), t2(s2);
PRUnichar* us1 = t1.GetUnicode();
PRUnichar* us2 = t2.GetUnicode();
const PRUnichar* us1 = t1.GetUnicode();
const PRUnichar* us2 = t2.GetUnicode();
PRIntn u = nsCRT::strcmp(us1, s2);
PRIntn u_n = nsCRT::strncmp(us1, s2, n);