From: <sa...@us...> - 2006-12-10 22:01:28
|
Revision: 17948 http://svn.sourceforge.net/gaim/?rev=17948&view=rev Author: sadrul Date: 2006-12-10 14:01:22 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Unleak Modified Paths: -------------- trunk/gtk/gtkstatusbox.c Modified: trunk/gtk/gtkstatusbox.c =================================================================== --- trunk/gtk/gtkstatusbox.c 2006-12-10 14:45:27 UTC (rev 17947) +++ trunk/gtk/gtkstatusbox.c 2006-12-10 22:01:22 UTC (rev 17948) @@ -1301,8 +1301,8 @@ if (box->active_row) { GtkTreePath *path = gtk_tree_row_reference_get_path(box->active_row); GtkTreeSelection *sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (box->tree_view)); - gtk_tree_selection_unselect_all(sel); gtk_tree_selection_select_path(sel, path); + gtk_tree_path_free(path); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |