bug 538633 - don't use nsDependentSubstring explicetly, r=neil

This commit is contained in:
Alexander Surkov 2010-01-12 03:01:51 +08:00
Родитель f9565a8d7f
Коммит b0fcfff2a3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -339,7 +339,7 @@ nsHTMLListBulletAccessible::AppendTextTo(nsAString& aText, PRUint32 aStartOffset
if (aLength > maxLength) {
aLength = maxLength;
}
aText += nsDependentSubstring(mBulletText, aStartOffset, aLength);
aText += Substring(mBulletText, aStartOffset, aLength);
return NS_OK;
}