fix incorrect bracing, r=beard

This commit is contained in:
rginda%netscape.com 2002-01-31 01:32:43 +00:00
Родитель 229e0f5868
Коммит eef75bda04
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -1264,6 +1264,7 @@ _setvalue(NPP npp, NPPVariable variable, void *result)
case NPPVpluginTransparentBool: {
NPBool bTransparent = (result != nsnull);
return inst->SetTransparent(bTransparent);
}
case NPPVjavascriptPushCallerBool:
{
@ -1290,7 +1291,7 @@ _setvalue(NPP npp, NPPVariable variable, void *result)
return NS_SUCCEEDED(rv) ? NPERR_NO_ERROR : NPERR_GENERIC_ERROR;
}
break;
}
default:
return NPERR_NO_ERROR;