Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg

This commit is contained in:
Randell Jesup
2012-09-01 22:35:17 -04:00
parent 360ad91182
commit 3b4961b603
617 changed files with 2504 additions and 2504 deletions

View File

@@ -244,7 +244,7 @@ Classifier::TableRequest(nsACString& aResult)
if (adds.Length() > 0) {
aResult.Append("a:");
nsCAutoString addList;
nsAutoCString addList;
adds.Serialize(addList);
aResult.Append(addList);
}
@@ -253,7 +253,7 @@ Classifier::TableRequest(nsACString& aResult)
if (adds.Length() > 0)
aResult.Append(':');
aResult.Append("s:");
nsCAutoString subList;
nsAutoCString subList;
subs.Serialize(subList);
aResult.Append(subList);
}
@@ -300,7 +300,7 @@ Classifier::Check(const nsACString& aSpec, LookupResultArray& aResults)
#if DEBUG && defined(PR_LOGGING)
if (LOG_ENABLED()) {
nsCAutoString checking;
nsAutoCString checking;
lookupHash.ToString(checking);
LOG(("Checking %s (%X)", checking.get(), lookupHash.ToUint32()));
}