Commit 2bf6305a authored by Alexandre Julliard's avatar Alexandre Julliard

widl: Don't force removal of progids since "CLSID" is also a progid.

parent 24d2f694
......@@ -146,14 +146,14 @@ static int write_progid( const type_t *class )
if (progid)
{
put_str( indent, "ForceRemove '%s' = s '%s'\n", progid, descr );
put_str( indent, "'%s' = s '%s'\n", progid, descr );
put_str( indent++, "{\n" );
put_str( indent, "CLSID = s '%s'\n", format_uuid( uuid ) );
put_str( --indent, "}\n" );
}
if (vi_progid)
{
put_str( indent, "ForceRemove '%s' = s '%s'\n", vi_progid, descr );
put_str( indent, "'%s' = s '%s'\n", vi_progid, descr );
put_str( indent++, "{\n" );
put_str( indent, "CLSID = s '%s'\n", format_uuid( uuid ) );
if (progid) put_str( indent, "CurVer = s '%s'\n", progid );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment