This commit is contained in:
aaronleventhal%moonset.net 2005-01-28 03:58:10 +00:00
Родитель d1c6e674bc
Коммит 2903163428
2 изменённых файлов: 6 добавлений и 3 удалений

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

@ -243,7 +243,8 @@ NS_IMETHODIMP nsAccessible::Init()
if (StringBeginsWith(roleString, prefix)) {
roleString.Cut(0, prefix.Length());
nsCString utf8Role = NS_ConvertUCS2toUTF8(roleString); // For easy comparison
for (PRUint32 index = 0; gWAIRoleMap[index].roleString; index ++) {
PRUint32 index;
for (index = 0; gWAIRoleMap[index].roleString; index ++) {
if (utf8Role.Equals(gWAIRoleMap[index].roleString)) {
break; // The dynamic role attribute maps to an entry in our table
}
@ -1099,7 +1100,8 @@ nsresult nsAccessible::AppendFlatStringFromSubtreeRecurse(nsIContent *aContent,
return NS_OK;
}
for (PRUint32 index = 0; index < numChildren; index++) {
PRUint32 index;
for (index = 0; index < numChildren; index++) {
AppendFlatStringFromSubtree(aContent->GetChildAt(index), aFlatString);
}
return NS_OK;

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

@ -970,7 +970,8 @@ NS_IMETHODIMP nsDocAccessible::FlushPendingEvents()
{
PRUint32 length = mEventsToFire.Count();
NS_ASSERTION(length, "How did we get here without events to fire?");
for (PRUint32 index = 0; index < length; index ++) {
PRUint32 index;
for (index = 0; index < length; index ++) {
nsIAccessibleEvent *accessibleEvent = mEventsToFire[index];
NS_ASSERTION(accessibleEvent, "Array item is not an accessible event");
nsCOMPtr<nsIAccessible> accessible;