зеркало из https://github.com/mozilla/gecko-dev.git
Fix silly warnings.
This commit is contained in:
Родитель
b0d19c19d8
Коммит
1a44d56fe9
|
@ -1155,13 +1155,13 @@ FileSystemDataSource::GetFolderList(nsIRDFResource *source, PRBool allowHidden,
|
|||
PRInt32 aOffset;
|
||||
while ((aOffset = leaf.FindChar(' ')) >= 0)
|
||||
{
|
||||
leaf.Cut(aOffset, 1);
|
||||
leaf.InsertWithConversion("%20", aOffset);
|
||||
leaf.Cut((PRUint32)aOffset, 1);
|
||||
leaf.InsertWithConversion("%20", (PRUint32)aOffset);
|
||||
}
|
||||
while ((aOffset = leaf.FindChar('/')) >= 0)
|
||||
{
|
||||
leaf.Cut(aOffset, 1);
|
||||
leaf.InsertWithConversion("%2F", aOffset);
|
||||
leaf.Cut((PRUint32)aOffset, 1);
|
||||
leaf.InsertWithConversion("%2F", (PRUint32)aOffset);
|
||||
}
|
||||
|
||||
// append the encoded name
|
||||
|
|
Загрузка…
Ссылка в новой задаче