From 2072201029bdd799396b37de23410bab71cc653e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 21 Jun 2013 16:58:18 +0000 Subject: minor code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@5083 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Variables/src/tokenregister.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Variables/src/tokenregister.cpp') diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp index 67c89301ae..ad0d25635d 100644 --- a/plugins/Variables/src/tokenregister.cpp +++ b/plugins/Variables/src/tokenregister.cpp @@ -210,7 +210,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, 0, (LPARAM)&cAi ); + callRes = CallService(thisVr->szService, 0, (LPARAM)&cAi ); for ( j=0; j < cAi.argc; j++ ) if (cAi.argv[j] != NULL) @@ -224,7 +224,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, 0, (LPARAM)ai ); + callRes = CallService(thisVr->szService, 0, (LPARAM)ai ); if ((TCHAR*)callRes != NULL) res = mir_tstrdup((TCHAR*)callRes ); @@ -236,7 +236,7 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai) if (trCopy.flags & TRF_CLEANUPFUNC ) trCopy.cleanupFunctionT((TCHAR*)callRes ); else if (trCopy.szCleanupService != NULL) - CallService( trCopy.szCleanupService, 0, (LPARAM)callRes ); + CallService(trCopy.szCleanupService, 0, (LPARAM)callRes ); } if (trCopy.flags & TRF_FREEMEM) if (trCopy.memType == TR_MEM_MIRANDA) -- cgit v1.2.3