Mercurial > pidgin
comparison libpurple/plugins/perl/common/Notify.xs @ 32819:2c6510167895 default tip
propagate from branch 'im.pidgin.pidgin.2.x.y' (head 3315c5dfbd0ad16511bdcf865e5b07c02d07df24)
to branch 'im.pidgin.pidgin' (head cbd1eda6bcbf0565ae7766396bb8f6f419cb6a9a)
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Sat, 02 Jun 2012 02:30:49 +0000 |
| parents | 0cc718e10344 |
| children |
comparison
equal
deleted
inserted
replaced
| 32818:01ff09d4a463 | 32819:2c6510167895 |
|---|---|
| 133 purple_notify_user_info_get_entries(user_info) | 133 purple_notify_user_info_get_entries(user_info) |
| 134 Purple::NotifyUserInfo user_info | 134 Purple::NotifyUserInfo user_info |
| 135 PREINIT: | 135 PREINIT: |
| 136 GList *l; | 136 GList *l; |
| 137 PPCODE: | 137 PPCODE: |
| 138 l = purple_notify_user_info_get_entries(user_info); | 138 l = purple_notify_user_info_get_entries(user_info)->head; |
| 139 for (; l != NULL; l = l->next) { | 139 for (; l != NULL; l = l->next) { |
| 140 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::NotifyUserInfoEntry"))); | 140 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::NotifyUserInfoEntry"))); |
| 141 } | 141 } |
| 142 | 142 |
| 143 gchar_own * | 143 gchar_own * |
| 144 purple_notify_user_info_get_text_with_newline(user_info, newline) | 144 purple_notify_user_info_get_text_with_newline(user_info, newline) |
| 145 Purple::NotifyUserInfo user_info | 145 Purple::NotifyUserInfo user_info |
| 146 const char *newline | 146 const char *newline |
| 147 | 147 |
| 148 void purple_notify_user_info_add_pair(user_info, label, value) | 148 void purple_notify_user_info_add_pair_html(user_info, label, value) |
| 149 Purple::NotifyUserInfo user_info | 149 Purple::NotifyUserInfo user_info |
| 150 const char *label | 150 const char *label |
| 151 const char *value | 151 const char *value |
| 152 | 152 |
| 153 void purple_notify_user_info_prepend_pair(user_info, label, value) | 153 void purple_notify_user_info_prepend_pair_html(user_info, label, value) |
| 154 Purple::NotifyUserInfo user_info | 154 Purple::NotifyUserInfo user_info |
| 155 const char *label | 155 const char *label |
| 156 const char *value | 156 const char *value |
| 157 | 157 |
| 158 void purple_notify_user_info_add_section_break(user_info) | 158 void purple_notify_user_info_add_section_break(user_info) |
