diff options
author | Ankit Vani <a@nevitus.org> | 2013-07-25 02:22:35 +0530 |
---|---|---|
committer | Ankit Vani <a@nevitus.org> | 2013-07-25 02:22:35 +0530 |
commit | d6276dc038970fcec2dabf68554cb0a704f6d07f (patch) | |
tree | a82bbc21c4b1adb97934af42ac11571bf7279bf8 /pidgin/gtklog.c | |
parent | 83c94227c2b62a7a1470eb4af071e45a1fa638ea (diff) | |
download | pidgin-d6276dc038970fcec2dabf68554cb0a704f6d07f.tar.gz |
Renamed PurpleBListNode back to PurpleBlistNode
Diffstat (limited to 'pidgin/gtklog.c')
-rw-r--r-- | pidgin/gtklog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pidgin/gtklog.c b/pidgin/gtklog.c index 127423c261..c6e481f946 100644 --- a/pidgin/gtklog.c +++ b/pidgin/gtklog.c @@ -740,7 +740,7 @@ void pidgin_log_show(PurpleLogType type, const char *buddyname, PurpleAccount *a void pidgin_log_show_contact(PurpleContact *contact) { struct log_viewer_hash_t *ht; - PurpleBListNode *child; + PurpleBlistNode *child; PidginLogViewer *lv = NULL; GList *logs = NULL; GdkPixbuf *pixbuf; @@ -763,7 +763,7 @@ void pidgin_log_show_contact(PurpleContact *contact) { return; } - for (child = purple_blist_node_get_first_child((PurpleBListNode*)contact) ; + for (child = purple_blist_node_get_first_child((PurpleBlistNode*)contact) ; child != NULL ; child = purple_blist_node_get_sibling_next(child)) { const char *buddy_name; |