diff options
Diffstat (limited to 'plugins/Variables/tokenregister.cpp')
-rw-r--r-- | plugins/Variables/tokenregister.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Variables/tokenregister.cpp b/plugins/Variables/tokenregister.cpp index 20f8f7c280..0418c3024f 100644 --- a/plugins/Variables/tokenregister.cpp +++ b/plugins/Variables/tokenregister.cpp @@ -225,15 +225,15 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai) else if (thisVr->szService != NULL)
callRes = CallService( thisVr->szService, (WPARAM)0, (LPARAM)ai );
- if (( TCHAR* )callRes != NULL)
- res = mir_tstrdup(( TCHAR* )callRes );
+ if ((TCHAR*)callRes != NULL)
+ res = mir_tstrdup((TCHAR*)callRes );
}
if (( void* )callRes != NULL) {
if (trCopy.flags & TRF_CLEANUP ) {
if (trCopy.flags & TRF_CLEANUPFUNC )
- trCopy.cleanupFunctionT(( TCHAR* )callRes );
+ trCopy.cleanupFunctionT((TCHAR*)callRes );
else if (trCopy.szCleanupService != NULL)
CallService( trCopy.szCleanupService, 0, (LPARAM)callRes );
}
|