# HG changeset patch # User Elliott Sales de Andrade # Date 1297561005 0 # Node ID 8ba7c2b732a88e595d98dbd534f4cee7f875ec44 # Parent ec557d653659c6dbe2c7621bb6cf6ed01fe82cf0 Hide some Facebook settings hacks for now. diff -r ec557d653659 -r 8ba7c2b732a8 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Sun Feb 13 01:36:19 2011 +0000 +++ b/pidgin/gtkaccount.c Sun Feb 13 01:36:45 2011 +0000 @@ -829,8 +829,11 @@ gtk_label_new_with_mnemonic(_("Ad_vanced")), 1); gtk_widget_show(vbox); +/* FIXME: Facebook forced-options hack */ +#if 0 menu = gtk_option_menu_get_menu(GTK_OPTION_MENU(dialog->protocol_menu)); item = gtk_menu_get_active(GTK_MENU(menu)); +#endif for (l = dialog->prpl_info->protocol_options; l != NULL; l = l->next) { @@ -946,9 +949,12 @@ model = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_POINTER); opt_entry->widget = combo = gtk_combo_box_new_with_model(GTK_TREE_MODEL(model)); +/* FIXME: Facebook forced-options hack */ +#if 0 if (g_object_get_data(G_OBJECT(item), "fakefacebook") && !strcmp(opt_entry->setting, "connection_security")) str_value = "opportunistic_tls"; +#endif /* Loop through list of PurpleKeyValuePair items */ for (node = list; node != NULL; node = node->next) {