From: <sea...@us...> - 2006-08-16 17:27:00
|
Revision: 16794 Author: seanegan Date: 2006-08-16 10:26:57 -0700 (Wed, 16 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16794&view=rev Log Message: ----------- Only one file selector Modified Paths: -------------- trunk/src/gtkstatusbox.c Modified: trunk/src/gtkstatusbox.c =================================================================== --- trunk/src/gtkstatusbox.c 2006-08-16 17:10:36 UTC (rev 16793) +++ trunk/src/gtkstatusbox.c 2006-08-16 17:26:57 UTC (rev 16794) @@ -947,14 +947,12 @@ static gboolean icon_box_press_cb(GtkWidget *widget, GdkEventButton *event, GtkGaimStatusBox *box) { - GtkWidget *filesel; - if (box->buddy_icon_sel) { gtk_window_present(GTK_WINDOW(box->buddy_icon_sel)); return FALSE; } - filesel = gaim_gtk_buddy_icon_chooser_new(NULL, icon_choose_cb, box); + box->buddy_icon_sel = gaim_gtk_buddy_icon_chooser_new(NULL, icon_choose_cb, box); gtk_widget_show_all(filesel); return FALSE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |