comparison src/protocols/msn/notification.c @ 6371:8f94cce8faa5

[gaim-migrate @ 6876] I think I touched almost every file. Here's what happened. I started off fixing up the Makefile.am and configure.ac files to help with the core/UI split some. Then I got annoyed with the build_{allow,deny}_list() functions that everything used, and decided to core/UI split privacy. While doing that, I decided to redesign the dialog. So now, a lot has changed, but not really so much. Just that most files got affected. Oh yeah, and the UI stuff was taken out of internal.h and moved to gtkinternal.h. If you use this, please be aware of this change. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 05 Aug 2003 10:55:04 +0000
parents 3613007cbb6e
children 0f0b34c72e69
comparison
equal deleted inserted replaced
6370:a4b83df2165b 6371:8f94cce8faa5
128 return; 128 return;
129 } 129 }
130 130
131 gaim_privacy_permit_add(pa->gc->account, 131 gaim_privacy_permit_add(pa->gc->account,
132 msn_user_get_passport(pa->user)); 132 msn_user_get_passport(pa->user));
133 build_allow_list();
134
135 show_got_added(pa->gc, NULL, msn_user_get_passport(pa->user), 133 show_got_added(pa->gc, NULL, msn_user_get_passport(pa->user),
136 msn_user_get_name(pa->user), NULL); 134 msn_user_get_name(pa->user), NULL);
137 } 135 }
138 136
139 msn_user_destroy(pa->user); 137 msn_user_destroy(pa->user);
157 return; 155 return;
158 } 156 }
159 157
160 gaim_privacy_deny_add(pa->gc->account, 158 gaim_privacy_deny_add(pa->gc->account,
161 msn_user_get_passport(pa->user)); 159 msn_user_get_passport(pa->user));
162 build_block_list();
163 } 160 }
164 161
165 msn_user_destroy(pa->user); 162 msn_user_destroy(pa->user);
166 g_free(pa); 163 g_free(pa);
167 } 164 }