diff -r f9a9ecd1b045 -r 0ff223f56a67 src/gtkutils.c --- a/src/gtkutils.c Sat Feb 07 17:40:57 2004 +0000 +++ b/src/gtkutils.c Sat Feb 07 23:24:31 2004 +0000 @@ -723,7 +723,7 @@ gtk_widget_show(item); gaim_set_accessible_label (item, label); - if (!strcmp(plugin->info->id, id)) + if (id != NULL && !strcmp(plugin->info->id, id)) selected_index = i; } @@ -1563,7 +1563,7 @@ gdk_window_get_origin (widget->window, x, y); gtk_tree_view_get_cursor (tv, &path, &col); gtk_tree_view_get_cell_area (tv, path, col, &rect); - + *x += rect.x+rect.width; *y += rect.y+rect.height+ythickness; gaim_gtk_menu_position_func (menu, x, y, push_in, data);