comparison libpurple/protocols/msn/contact.c @ 23507:711773577380

Clean up some MSN SOAP stuff. I think soap2.[ch] have proven themselves since we've been using them all this time. Removed soap.[ch] and any references to them, since those were mostly in header files, without any actual use in code. Also, removed some SOAP templates from group.h which are now taken care of by contact.[ch].
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 28 Jun 2008 06:01:22 +0000
parents 31b5a1334e7e
children 7bceac816e19
comparison
equal deleted inserted replaced
23506:8263c86099df 23507:711773577380
26 26
27 #include "msn.h" 27 #include "msn.h"
28 #include "contact.h" 28 #include "contact.h"
29 #include "xmlnode.h" 29 #include "xmlnode.h"
30 #include "group.h" 30 #include "group.h"
31 #include "soap2.h" 31 #include "soap.h"
32 #include "nexus.h" 32 #include "nexus.h"
33 33
34 const char *MsnSoapPartnerScenarioText[] = 34 const char *MsnSoapPartnerScenarioText[] =
35 { 35 {
36 "Initial", 36 "Initial",
76 new_state->new_group_name = g_strdup(state->new_group_name); 76 new_state->new_group_name = g_strdup(state->new_group_name);
77 new_state->guid = g_strdup(state->guid); 77 new_state->guid = g_strdup(state->guid);
78 /* The rest should be made new */ 78 /* The rest should be made new */
79 79
80 return new_state; 80 return new_state;
81 } 81 }
82 82
83 void 83 void
84 msn_callback_state_free(MsnCallbackState *state) 84 msn_callback_state_free(MsnCallbackState *state)
85 { 85 {
86 if (state == NULL) 86 if (state == NULL)