comparison src/away.c @ 3572:bdd0bebd2d04

[gaim-migrate @ 3670] Phase II. No longer do you have to worry about protocol plugins. When Gaim probes plugins on load, it will detect protocol plugins and add them to the list of available protocols. When you try to log an account on with one of them, Gaim will automatically load the plugin--when no more accounts need the protocol--Gaim will automatically unload it. Protocol plugins are no longer available in the plugins ui, and no protocols are compiled statically by default. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 30 Sep 2002 01:05:18 +0000
parents 6b0cb60162f4
children 30f52e7afd1d
comparison
equal deleted inserted replaced
3571:a88c62c5b7da 3572:bdd0bebd2d04
462 con = con->next; 462 con = con->next;
463 continue; 463 continue;
464 } 464 }
465 465
466 g_snprintf(buf, sizeof(buf), "%s (%s)", 466 g_snprintf(buf, sizeof(buf), "%s (%s)",
467 gc->username, gc->prpl->name()); 467 gc->username, gc->prpl->name);
468 menuitem = gtk_menu_item_new_with_label(buf); 468 menuitem = gtk_menu_item_new_with_label(buf);
469 gtk_menu_append(GTK_MENU(awaymenu), menuitem); 469 gtk_menu_append(GTK_MENU(awaymenu), menuitem);
470 gtk_widget_show(menuitem); 470 gtk_widget_show(menuitem);
471 471
472 submenu = gtk_menu_new(); 472 submenu = gtk_menu_new();