From 75b1ff75c42644eb36552762652e4b0c9ff071bc Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 2 Nov 2012 14:11:01 +0000 Subject: final switch to the typed icolib api git-svn-id: http://svn.miranda-ng.org/main/trunk@2152 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Variables/src/tokenregister.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Variables/src/tokenregister.cpp') diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp index 0418c3024f..7a7bbcf95f 100644 --- a/plugins/Variables/src/tokenregister.cpp +++ b/plugins/Variables/src/tokenregister.cpp @@ -209,7 +209,7 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai) if (thisVr->flags & TRF_PARSEFUNC ) callRes = (INT_PTR)thisVr->parseFunction( &cAi ); else if (thisVr->szService != NULL) - callRes = CallService( thisVr->szService, (WPARAM)0, (LPARAM)&cAi ); + callRes = CallService( thisVr->szService, 0, (LPARAM)&cAi ); for ( j=0; j < cAi.argc; j++ ) if (cAi.argv[j] != NULL) @@ -223,7 +223,7 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai) if (thisVr->flags & TRF_PARSEFUNC ) callRes = (INT_PTR)thisVr->parseFunctionT( ai ); else if (thisVr->szService != NULL) - callRes = CallService( thisVr->szService, (WPARAM)0, (LPARAM)ai ); + callRes = CallService( thisVr->szService, 0, (LPARAM)ai ); if ((TCHAR*)callRes != NULL) res = mir_tstrdup((TCHAR*)callRes ); -- cgit v1.2.3