Fixing bustage -- missing part of patch

This commit is contained in:
aaronleventhal%moonset.net 2007-04-18 15:56:29 +00:00
Родитель 91dcb36ae0
Коммит d728360129
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -102,7 +102,6 @@ protected:
nsHTMLSelectableAccessible *mParentSelect; nsHTMLSelectableAccessible *mParentSelect;
public: public:
void Shutdown();
iterator(nsHTMLSelectableAccessible *aParent, nsIWeakReference *aWeakShell); iterator(nsHTMLSelectableAccessible *aParent, nsIWeakReference *aWeakShell);
void CalcSelectionCount(PRInt32 *aSelectionCount); void CalcSelectionCount(PRInt32 *aSelectionCount);
@ -201,6 +200,8 @@ public:
/** Finally, the Combobox widgets */ /** Finally, the Combobox widgets */
/** ------------------------------------------------------ */ /** ------------------------------------------------------ */
class nsHTMLComboboxListAccessible;
/* /*
* A class the represents the HTML Combobox widget. * A class the represents the HTML Combobox widget.
*/ */
@ -222,9 +223,13 @@ public:
NS_IMETHOD GetActionName(PRUint8 aIndex, nsAString& aName); NS_IMETHOD GetActionName(PRUint8 aIndex, nsAString& aName);
void CacheChildren(); void CacheChildren();
NS_IMETHOD Shutdown();
protected: protected:
already_AddRefed<nsIAccessible> GetFocusedOptionAccessible(); already_AddRefed<nsIAccessible> GetFocusedOptionAccessible();
private:
nsRefPtr<nsHTMLComboboxListAccessible> mListAccessible;
}; };
#ifdef COMBO_BOX_WITH_THREE_CHILDREN #ifdef COMBO_BOX_WITH_THREE_CHILDREN