diff options
| author | George Hazan <george.hazan@gmail.com> | 2014-02-12 14:12:44 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2014-02-12 14:12:44 +0000 | 
| commit | 371db973914f270432e914922b735e01279c5db8 (patch) | |
| tree | 4f402371dec7eacf536f61f691af3965cee09261 /plugins/MetaContacts/src | |
| parent | 7d9f85b1487f0f25d6d616d5cd9af61962af7781 (diff) | |
another bunch of useless conversions died
git-svn-id: http://svn.miranda-ng.org/main/trunk@8109 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MetaContacts/src')
| -rw-r--r-- | plugins/MetaContacts/src/meta_menu.cpp | 6 | ||||
| -rwxr-xr-x | plugins/MetaContacts/src/meta_services.cpp | 10 | ||||
| -rw-r--r-- | plugins/MetaContacts/src/meta_utils.cpp | 18 | 
3 files changed, 17 insertions, 17 deletions
diff --git a/plugins/MetaContacts/src/meta_menu.cpp b/plugins/MetaContacts/src/meta_menu.cpp index 853dc18394..0031b461ed 100644 --- a/plugins/MetaContacts/src/meta_menu.cpp +++ b/plugins/MetaContacts/src/meta_menu.cpp @@ -129,7 +129,7 @@ void Meta_RemoveContactNumber(MCONTACT hMeta, int number)  		// stop ignoring, if we were
  		if (options.suppress_status)
 -			CallService(MS_IGNORE_UNIGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +			CallService(MS_IGNORE_UNIGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  	}
  	// each contact from 'number' upwards will be moved down one
 @@ -229,7 +229,7 @@ INT_PTR Meta_Delete(WPARAM wParam,LPARAM lParam)  				// stop ignoring, if we were
  				if (options.suppress_status)
 -					CallService(MS_IGNORE_UNIGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +					CallService(MS_IGNORE_UNIGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  			}
  		}
 @@ -379,7 +379,7 @@ int Meta_ModifyMenu(WPARAM wParam, LPARAM lParam)  			mi.flags |= CMIM_FLAGS | CMIM_NAME | CMIM_ICON;
 -			int iconIndex = CallService(MS_CLIST_GETCONTACTICON, (WPARAM)hContact, 0);
 +			int iconIndex = CallService(MS_CLIST_GETCONTACTICON, hContact, 0);
  			mi.hIcon = ImageList_GetIcon((HIMAGELIST)CallService(MS_CLIST_GETICONSIMAGELIST, 0, 0), iconIndex, 0);
  			Menu_ModifyItem(hMenuContact[i], &mi);
 diff --git a/plugins/MetaContacts/src/meta_services.cpp b/plugins/MetaContacts/src/meta_services.cpp index c615a01b08..63578c17aa 100755 --- a/plugins/MetaContacts/src/meta_services.cpp +++ b/plugins/MetaContacts/src/meta_services.cpp @@ -793,7 +793,7 @@ int Meta_ContactDeleted(WPARAM wParam, LPARAM lParam)  			// stop ignoring, if we were
  			if (options.suppress_status)
 -				CallService(MS_IGNORE_UNIGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +				CallService(MS_IGNORE_UNIGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  		}
  	}
  	return 0;
 @@ -945,7 +945,7 @@ int Meta_ClistDoubleClicked(WPARAM wParam, LPARAM lParam)  INT_PTR Meta_ClistMessageEventClicked(WPARAM wParam, LPARAM lParam)
  {
  	MCONTACT hContact = ((CLISTEVENT *)lParam)->hContact;
 -	return Meta_ClistDoubleClicked((WPARAM)hContact, (LPARAM)((CLISTEVENT *)lParam)->hDbEvent);
 +	return Meta_ClistDoubleClicked(hContact, (LPARAM)((CLISTEVENT *)lParam)->hDbEvent);
  }
  int NudgeRecieved(WPARAM wParam, LPARAM lParam)
 @@ -1117,17 +1117,17 @@ INT_PTR Meta_ContactMenuFunc(WPARAM wParam, LPARAM lParam)  				CallService(MS_MSG_SENDMESSAGE, wParam, 0);
  			} else
  				// protocol does not support messaging - simulate double click
 -				CallService(MS_CLIST_CONTACTDOUBLECLICKED, (WPARAM)hContact, 0);
 +				CallService(MS_CLIST_CONTACTDOUBLECLICKED, hContact, 0);
  		} else
  			// protocol does not support messaging - simulate double click
 -			CallService(MS_CLIST_CONTACTDOUBLECLICKED, (WPARAM)hContact, 0);
 +			CallService(MS_CLIST_CONTACTDOUBLECLICKED, hContact, 0);
  	} else if (options.menu_function == FT_MENU) {
  		// show contact's context menu
  		CallFunctionAsync(sttMenuThread, (void*)hContact);
  	} else if (options.menu_function == FT_INFO) {
  		// show user info for subcontact
 -		CallService(MS_USERINFO_SHOWDIALOG, (WPARAM)hContact, 0);
 +		CallService(MS_USERINFO_SHOWDIALOG, hContact, 0);
  	}
  	return 0;
 diff --git a/plugins/MetaContacts/src/meta_utils.cpp b/plugins/MetaContacts/src/meta_utils.cpp index 4d83038cd3..6789e21352 100644 --- a/plugins/MetaContacts/src/meta_utils.cpp +++ b/plugins/MetaContacts/src/meta_utils.cpp @@ -719,7 +719,7 @@ int Meta_SetHandles(void)  				MessageBox(0, TranslateT("Subcontact contact number < 0 - deleting MetaContact"), nick_buffer, MB_OK | MB_ICONERROR);
  				//CallService(MS_DB_CONTACT_DELETE, (WPARMA)hContact, 0);
  				hNextContact = db_find_next(hContact);
 -				Meta_Delete((WPARAM)hContact, (LPARAM)1);
 +				Meta_Delete(hContact, (LPARAM)1);
  				hContact = hNextContact;
  				continue;		
  				//return 1;
 @@ -758,7 +758,7 @@ int Meta_SetHandles(void)  						MessageBox(0, buff, nick_buffer, MB_OK | MB_ICONERROR);
  						hNextContact = db_find_next(hContact);
 -						Meta_Delete((WPARAM)hContact, (LPARAM)1);
 +						Meta_Delete(hContact, (LPARAM)1);
  						hContact = hNextContact;
  						continue;		
  					}
 @@ -781,7 +781,7 @@ int Meta_SetHandles(void)  				// stop ignoring, if we were
  				if (options.suppress_status)
 -					CallService(MS_IGNORE_UNIGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +					CallService(MS_IGNORE_UNIGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  			}
  			else {
 @@ -809,7 +809,7 @@ int Meta_SetHandles(void)  				// problem
  				MessageBox(0, TranslateT("MetaContact number of contacts < 0 - deleting MetaContact"), nick_buffer, MB_OK | MB_ICONERROR);
  				hNextContact = db_find_next(hContact);
 -				Meta_Delete((WPARAM)hContact, (LPARAM)1);
 +				Meta_Delete(hContact, (LPARAM)1);
  				hContact = hNextContact;
  				continue;		
  			}
 @@ -818,7 +818,7 @@ int Meta_SetHandles(void)  				// problem
  				MessageBox(0, TranslateT("MetaContact default contact number out of range - deleting MetaContact"), nick_buffer, MB_OK | MB_ICONERROR);
  				hNextContact = db_find_next(hContact);
 -				Meta_Delete((WPARAM)hContact, (LPARAM)1);
 +				Meta_Delete(hContact, (LPARAM)1);
  				hContact = hNextContact;
  				continue;		
  			}
 @@ -841,7 +841,7 @@ int Meta_SetHandles(void)  				_tcscat(nick_buffer, _itot(meta_id, buffer2, 10));
  				MessageBox(0, TranslateT("MetaContact corrupted - the number of subcontacts is incorrect.\nDeleting MetaContact."), nick_buffer, MB_OK | MB_ICONERROR);
 -				Meta_Delete((WPARAM)hContact, (LPARAM)1);
 +				Meta_Delete(hContact, (LPARAM)1);
  				hContact = hNextContact;
  				continue;		
  			}
 @@ -950,7 +950,7 @@ int Meta_HideLinkedContacts(void) {  			}
  			if (options.suppress_status)
 -				CallService(MS_IGNORE_IGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +				CallService(MS_IGNORE_IGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  		}
  		hContact = db_find_next(hContact);
 @@ -1122,9 +1122,9 @@ int Meta_SuppressStatus(BOOL suppress)  		if (db_get_dw(hContact, META_PROTO, META_LINK,(DWORD)-1)!=(DWORD)-1) {
  			// is a subcontact
  			if (suppress)
 -				CallService(MS_IGNORE_IGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +				CallService(MS_IGNORE_IGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  			else
 -				CallService(MS_IGNORE_UNIGNORE, (WPARAM)hContact, (WPARAM)IGNOREEVENT_USERONLINE);
 +				CallService(MS_IGNORE_UNIGNORE, hContact, (WPARAM)IGNOREEVENT_USERONLINE);
  		}
  	}	
  | 
