Missing part of checkin for bug 287730. Reporting position of radio buttons, r+sr=bz on missing part, a=asa

This commit is contained in:
aaronleventhal%moonset.net 2005-04-07 14:08:12 +00:00
Родитель 66a9f8e901
Коммит f0ee890389
1 изменённых файлов: 7 добавлений и 7 удалений

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

@ -236,6 +236,12 @@ public:
NS_IMETHOD GetCheckedChanged(PRBool* aCheckedChanged);
NS_IMETHOD AddedToRadioGroup(PRBool aNotify = PR_TRUE);
NS_IMETHOD WillRemoveFromRadioGroup();
/**
* Get the radio group container for this button (form or document)
* @return the radio group container (or null if no form or document)
*/
virtual already_AddRefed<nsIRadioGroupContainer> GetRadioGroupContainer();
protected:
// Helper method
@ -303,12 +309,6 @@ protected:
*/
nsresult SetCheckedInternal(PRBool aValue, PRBool aNotify);
/**
* Get the radio group container for this button (form or document)
* @return the radio group container (or null if no form or document)
*/
already_AddRefed<nsIRadioGroupContainer> GetRadioGroupContainer();
/**
* MaybeSubmitForm looks for a submit input or a single text control
* and submits the form if either is present.
@ -892,7 +892,7 @@ nsHTMLInputElement::RadioSetChecked(PRBool aNotify)
return rv;
}
already_AddRefed<nsIRadioGroupContainer>
/* virtual */ already_AddRefed<nsIRadioGroupContainer>
nsHTMLInputElement::GetRadioGroupContainer()
{
nsIRadioGroupContainer* retval = nsnull;