comparison src/gtkblist.h @ 5427:04e1e40b99b0

[gaim-migrate @ 5806] Fixed a tiny memleak in msn.c. Chip: the other leak memprof is complaining about is from line 134 of src/protocols/msn/servconn.c I tried freeing the hash table in msn_servocnn_destroy, but that resulted in a crash after signing on then off then on again. I don't know what's up with that, maybe it's not really a memleak. Also, I guess item factories aren't freed automatically? It seems like they should be, but gtkconv.c calls g_object_unref on the item factory explicitly, and not calling it on the item factory for the blist shows up as a memleak. So that should be fixed now. Oh, I also removed a function declaration for a static function... committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 18 May 2003 07:54:54 +0000
parents af62169c74fd
children 9eb5b13fd412
comparison
equal deleted inserted replaced
5426:8d8bf0d31a23 5427:04e1e40b99b0
54 GtkTreeStore *treemodel; /**< This is the treemodel. */ 54 GtkTreeStore *treemodel; /**< This is the treemodel. */
55 GtkTreeViewColumn *idle_column, 55 GtkTreeViewColumn *idle_column,
56 *warning_column, 56 *warning_column,
57 *buddy_icon_column; 57 *buddy_icon_column;
58 58
59 GtkItemFactory *ift;
59 GtkWidget *bpmenu; /**< The buddy pounce menu. */ 60 GtkWidget *bpmenu; /**< The buddy pounce menu. */
60 61
61 GtkWidget *bbox; /**< A Button Box. */ 62 GtkWidget *bbox; /**< A Button Box. */
62 GtkTooltips *tooltips; /**< Tooltips for the buttons. */ 63 GtkTooltips *tooltips; /**< Tooltips for the buttons. */
63 64