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

Alexandre Julliard julliard at winehq.org
Sun Dec 5 12:10:04 CST 2010


Module: wine
Branch: master
Commit: 2bf6305ad6fc0f99bed07227dd716326c6916045
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2bf6305ad6fc0f99bed07227dd716326c6916045

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Dec  3 18:09:06 2010 +0100

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

---

 tools/widl/register.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/widl/register.c b/tools/widl/register.c
index dcb64db..34f48fe 100644
--- a/tools/widl/register.c
+++ b/tools/widl/register.c
@@ -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 );




More information about the wine-cvs mailing list