comparison src/gtkconn.c @ 10884:5cda52915a1f

[gaim-migrate @ 12582] Rename create_prpl_icon to gaim_gtk_create_prpl_icon, remove some dead code from gtkconv, and use G_MODULE_BIND_LOCAL - this breaks perl plugins, and should be added to the list of things that need fixing to save perl. Semi-fix the raw plugin too, but only if your filesystem is being friendly in where it puts stuff. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 28 Apr 2005 01:06:31 +0000
parents fa06fda62868
children ceb530338123
comparison
equal deleted inserted replaced
10883:b0fdadf463d4 10884:5cda52915a1f
314 314
315 if (disconnect_window == NULL) 315 if (disconnect_window == NULL)
316 return; 316 return;
317 317
318 model = gtk_tree_view_get_model(GTK_TREE_VIEW(disconnect_window->treeview)); 318 model = gtk_tree_view_get_model(GTK_TREE_VIEW(disconnect_window->treeview));
319 icon = create_prpl_icon(account); 319 icon = gaim_gtk_create_prpl_icon(account);
320 scale = gdk_pixbuf_scale_simple(icon, 16, 16, GDK_INTERP_BILINEAR); 320 scale = gdk_pixbuf_scale_simple(icon, 16, 16, GDK_INTERP_BILINEAR);
321 321
322 /* Mark all disconnections w/ the account type disconnected /w grey icon */ 322 /* Mark all disconnections w/ the account type disconnected /w grey icon */
323 if (!gaim_account_is_connected(account)) 323 if (!gaim_account_is_connected(account))
324 gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.0, FALSE); 324 gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.0, FALSE);