diff -r 8b50be3e2998 -r 06caf639d95e app-manager/app-manager.c --- a/app-manager/app-manager.c Fri Apr 30 20:37:08 2010 +0100 +++ b/app-manager/app-manager.c Thu Nov 10 11:19:34 2011 +0000 @@ -46,8 +46,8 @@ if (!w->window) { link=list; - list=g_slist_remove_link(list,link); - g_slist_free_1(link); + list=g_list_remove_link(list,link); + g_list_free_1(link); } else { @@ -62,7 +62,7 @@ if (gtk_widget_get_display(w)==display) gdk_window_set_cursor(w->window,cursor); else - remaining=g_slist_prepend(remaining,w); + remaining=g_list_prepend(remaining,w); } } gdk_display_flush(display); @@ -152,9 +152,7 @@ static void install_icons(void) { - int w,h; gchar *s; - GdkPixbuf *pixbuf; GtkIconSource *source; GtkIconSet *icon_set; GtkIconFactory *factory;