not in build. form submission works

This commit is contained in:
mjudge%netscape.com 2000-05-16 01:03:07 +00:00
Родитель b4f506075d
Коммит 591855d634
1 изменённых файлов: 14 добавлений и 1 удалений

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

@ -1323,7 +1323,20 @@ PRInt32 nsGfxTextControlFrame2::GetMaxNumValues(){return 1;}/**/
PRBool nsGfxTextControlFrame2::GetNamesValues(PRInt32 aMaxNumValues, PRInt32& aNumValues,
nsString* aValues, nsString* aNames)
{
return PR_FALSE;
if (!aValues || !aNames) { return PR_FALSE; }
nsAutoString name;
nsresult result = GetName(&name);
if ((aMaxNumValues <= 0) || (NS_CONTENT_ATTR_NOT_THERE == result)) {
return PR_FALSE;
}
aNames[0] = name;
aNumValues = 1;
GetText(&(aValues[0]), PR_FALSE);
// XXX: error checking
return PR_TRUE;
}
nscoord