fix incorrect bracing, r=beard

This commit is contained in:
rginda%netscape.com 2002-01-31 01:32:43 +00:00
parent 229e0f5868
commit eef75bda04

View File

@ -1264,7 +1264,8 @@ _setvalue(NPP npp, NPPVariable variable, void *result)
case NPPVpluginTransparentBool: {
NPBool bTransparent = (result != nsnull);
return inst->SetTransparent(bTransparent);
}
case NPPVjavascriptPushCallerBool:
{
nsresult rv;
@ -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;