Aric Stewart : imm32: Remove unused parameter to IMM_RegisterIMEClass.

Alexandre Julliard julliard at winehq.org
Thu Oct 11 15:25:16 CDT 2012


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

Author: Aric Stewart <aric at codeweavers.com>
Date:   Thu Oct 11 07:46:28 2012 -0500

imm32: Remove unused parameter to IMM_RegisterIMEClass.

---

 dlls/imm32/imm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index 6f262f5..206938d 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -376,7 +376,7 @@ static void IMM_RegisterMessages(void)
     WM_MSIME_DOCUMENTFEED = RegisterWindowMessageA("MSIMEDocumentFeed");
 }
 
-static void IMM_RegisterIMEClass(HINSTANCE hInstDLL)
+static void IMM_RegisterIMEClass(void)
 {
     static const WCHAR szwIME[] = {'I','M','E',0};
     WNDCLASSW wndClass;
@@ -402,7 +402,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpReserved)
             tlsIndex = TlsAlloc();
             if (tlsIndex == TLS_OUT_OF_INDEXES)
                 return FALSE;
-            IMM_RegisterIMEClass(hInstDLL);
+            IMM_RegisterIMEClass();
             break;
         case DLL_THREAD_ATTACH:
             break;




More information about the wine-cvs mailing list