mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-05 08:09:15 +00:00
Fix build bustage?
This commit is contained in:
parent
159a4274d7
commit
27dda0bbd2
@ -518,7 +518,7 @@ nsIFrame* nsHTMLSelectOptionAccessible::GetBoundsFrame()
|
||||
if (NS_SUCCEEDED(accService->GetAccessibleFor(selectNode,
|
||||
getter_AddRefs(selAcc)))) {
|
||||
PRUint32 state;
|
||||
selAcc->GetFinalState(&state);
|
||||
selAcc->GetState(&state);
|
||||
if (state & STATE_COLLAPSED) {
|
||||
nsCOMPtr<nsIPresShell> presShell(GetPresShell());
|
||||
if (!presShell) {
|
||||
@ -879,7 +879,7 @@ NS_IMETHODIMP nsHTMLComboboxAccessible::GetValue(nsAString& aValue)
|
||||
nsCOMPtr<nsIAccessible> textFieldAccessible;
|
||||
nsresult rv = GetFirstChild(getter_AddRefs(textFieldAccessible));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
return textFieldAccessible->GetFinalValue(aValue);
|
||||
return textFieldAccessible->GetValue(aValue);
|
||||
}
|
||||
|
||||
/** ----- nsHTMLComboboxTextFieldAccessible ----- */
|
||||
|
Loading…
x
Reference in New Issue
Block a user