mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
fix the nmake bustage again
This commit is contained in:
parent
db6c53369f
commit
962b2ea4f5
@ -34,7 +34,7 @@ REQUIRES = \
|
||||
$(NULL)
|
||||
|
||||
CPPSRCS = \
|
||||
nsTestUConv.cpp \
|
||||
TestUConv.cpp \
|
||||
nsconv.cpp \
|
||||
plattest.cpp \
|
||||
$(NULL)
|
||||
|
@ -257,7 +257,7 @@ nsresult nsTestUConv::TestCharsetManager()
|
||||
mLog.PrintError("get()", res);
|
||||
return res;
|
||||
}
|
||||
if (!csName.Equals(NS_LossyConvertUCS2toASCII(name).get())) {
|
||||
if (!csName.Equals(nsDependentString(name))) {
|
||||
mLog.PrintError("Equals()", "unexpected charset name");
|
||||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
@ -274,7 +274,7 @@ nsresult nsTestUConv::TestCharsetManager()
|
||||
mLog.PrintError("get()", res);
|
||||
return res;
|
||||
}
|
||||
if (!csAlias2.EqualsWithConversion(NS_LossyConvertUCS2toASCII(name).get())) {
|
||||
if (!csAlias2.Equals(nsDependentString(name))) {
|
||||
mLog.PrintError("Equals()", "unexpected charset name");
|
||||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user