Bug 639490 - Remove nsHTMLInputElement::GetNameIfExists. r=sicking

This commit is contained in:
Mounir Lamouri 2011-05-04 14:46:09 +02:00
Родитель ad4633017a
Коммит e8c7102fb1
2 изменённых файлов: 2 добавлений и 12 удалений

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

@ -3002,7 +3002,7 @@ nsHTMLInputElement::SubmitNamesValues(nsFormSubmission* aFormSubmission)
// Get the name
nsAutoString name;
PRBool nameThere = GetNameIfExists(name);
GetAttr(kNameSpaceID_None, nsGkAtoms::name, name);
// Submit .x, .y for input type=image
if (mType == NS_FORM_INPUT_IMAGE) {
@ -3040,7 +3040,7 @@ nsHTMLInputElement::SubmitNamesValues(nsFormSubmission* aFormSubmission)
//
// If name not there, don't submit
if (!nameThere) {
if (name.IsEmpty()) {
return NS_OK;
}

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

@ -387,16 +387,6 @@ protected:
nsresult GetSelectionRange(PRInt32* aSelectionStart, PRInt32* aSelectionEnd);
/**
* Get the name if it exists and return whether it did exist
* @param aName the name returned [OUT]
* @param true if the name is empty, false otherwise
*/
PRBool GetNameIfExists(nsAString& aName) {
GetAttr(kNameSpaceID_None, nsGkAtoms::name, aName);
return !aName.IsEmpty();
}
/**
* Called when an attribute is about to be changed
*/