vbscript: Fixed copy&paste typo in invoke_builtin.

This commit is contained in:
Jacek Caban 2012-09-28 12:48:46 +02:00 committed by Alexandre Julliard
parent 46fbe49069
commit c36045dbcc
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ static HRESULT invoke_builtin(vbdisp_t *This, const builtin_prop_t *prop, WORD f
}
break;
case DISPATCH_PROPERTYPUT:
if(!(prop->flags & (BP_GET|BP_GETPUT))) {
if(!(prop->flags & BP_GETPUT)) {
FIXME("property does not support DISPATCH_PROPERTYPUT\n");
return E_FAIL;
}