From d0820c1840f7a7bcf367c325c118ed85a4109546 Mon Sep 17 00:00:00 2001 From: Dan Hipschman Date: Wed, 23 Jan 2008 16:56:02 -0800 Subject: [PATCH] oleaut32: Use the symbolic name for TYPEFLAG_FDISPATCHABLE. --- dlls/oleaut32/typelib2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleaut32/typelib2.c b/dlls/oleaut32/typelib2.c index 7464b0c9eac..00c79cecc1c 100644 --- a/dlls/oleaut32/typelib2.c +++ b/dlls/oleaut32/typelib2.c @@ -1225,7 +1225,7 @@ static HRESULT WINAPI ICreateTypeInfo2_fnSetTypeFlags(ICreateTypeInfo2 *iface, U This->typeinfo->flags = uTypeFlags; - if (uTypeFlags & 0x1000) { + if (uTypeFlags & TYPEFLAG_FDISPATCHABLE) { MSFT_GuidEntry foo; int guidoffset; int fileoffset;