Fix typos.

This commit is contained in:
Ghislain MARY 2013-09-18 16:03:21 +02:00
parent 77b1aff186
commit 879bb3f619
2 changed files with 2 additions and 2 deletions

View file

@ -624,7 +624,7 @@ LINPHONE_PUBLIC int linphone_presence_person_add_activities_note(LinphonePresenc
* @param[in] person The #LinphonePresencePerson object for which to clear the activities notes.
* @return 0 if successful, a value < 0 in case of error.
*/
LINPHONE_PUBLIC int linphone_presence_person_clear_activites_notes(LinphonePresencePerson *person);
LINPHONE_PUBLIC int linphone_presence_person_clear_activities_notes(LinphonePresencePerson *person);
/*****************************************************************************

View file

@ -794,7 +794,7 @@ LinphonePresenceNote * linphone_presence_service_get_nth_note(const LinphonePres
return (LinphonePresenceNote *)ms_list_nth_data(service->notes, idx);
}
int linphone_presence_service_add_person(LinphonePresenceService *service, LinphonePresenceNote *note) {
int linphone_presence_service_add_note(LinphonePresenceService *service, LinphonePresenceNote *note) {
if ((service == NULL) || (note == NULL)) return -1;
service->notes = ms_list_append(service->notes, note);
return 0;