This commit is contained in:
aaronleventhal%moonset.net 2007-07-04 08:49:00 +00:00
Родитель e4879911a7
Коммит ab881f8bdc
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -796,8 +796,8 @@ GetAttributeSet(nsIAccessible* aAccessible)
if (attributes) { if (attributes) {
// Deal with attributes that we only need to expose in ATK // Deal with attributes that we only need to expose in ATK
PRUint32 state; PRUint32 state, extraState;
aAccessible->GetFinalState(&state); aAccessible->GetFinalState(&state, &extraState);
if (state & nsIAccessibleStates::STATE_HASPOPUP) { if (state & nsIAccessibleStates::STATE_HASPOPUP) {
// There is no ATK state for haspopup, must use object attribute to expose the same info // There is no ATK state for haspopup, must use object attribute to expose the same info
nsAutoString oldValueUnused; nsAutoString oldValueUnused;