Marcus Meissner : comcat: Remove const from COMCAT Manager.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Dec 8 06:06:59 CST 2006


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

Author: Marcus Meissner <marcus at jet.franken.de>
Date:   Fri Dec  8 09:35:08 2006 +0100

comcat: Remove const from COMCAT Manager.

---

 dlls/comcat/comcat_private.h |    2 +-
 dlls/comcat/manager.c        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comcat/comcat_private.h b/dlls/comcat/comcat_private.h
index 88587b5..4002dfd 100644
--- a/dlls/comcat/comcat_private.h
+++ b/dlls/comcat/comcat_private.h
@@ -63,7 +63,7 @@ typedef struct
     LONG ref;
 } ComCatMgrImpl;
 
-extern const ComCatMgrImpl COMCAT_ComCatMgr;
+extern ComCatMgrImpl COMCAT_ComCatMgr;
 extern const ICatRegisterVtbl COMCAT_ICatRegister_Vtbl;
 extern const ICatInformationVtbl COMCAT_ICatInformation_Vtbl;
 
diff --git a/dlls/comcat/manager.c b/dlls/comcat/manager.c
index 9911b78..0b80cbe 100644
--- a/dlls/comcat/manager.c
+++ b/dlls/comcat/manager.c
@@ -111,7 +111,7 @@ static const IUnknownVtbl COMCAT_IUnknow
 /**********************************************************************
  * static ComCatMgr instance
  */
-const ComCatMgrImpl COMCAT_ComCatMgr =
+ComCatMgrImpl COMCAT_ComCatMgr =
 {
     &COMCAT_IUnknown_Vtbl,
     &COMCAT_ICatRegister_Vtbl,




More information about the wine-cvs mailing list