comparison src/dialogs.c @ 8697:725413cc9fb9

[gaim-migrate @ 9450] WYSIWYG info editing from Jon Oberheide We need separate gc flags for conversation HTML and user info HTML, or something. It seems like there should be a better way to do that... Hint hint wink wink nudge nudge I kick your foot, under the table You kick me back, I can't say I'm able To stand for you, or fall for you Ever again I wish for, a perfect setting Wishing that I'm letting you take me Where you want me, all over again committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 18 Apr 2004 06:22:42 +0000
parents cc2ce209cc46
children 262f81346c0a
comparison
equal deleted inserted replaced
8696:aebfa2b6af6b 8697:725413cc9fb9
865 void 865 void
866 alias_dialog_blist_chat(GaimChat *chat) 866 alias_dialog_blist_chat(GaimChat *chat)
867 { 867 {
868 gaim_request_input(NULL, _("Alias Chat"), NULL, 868 gaim_request_input(NULL, _("Alias Chat"), NULL,
869 _("Enter an alias for this chat."), 869 _("Enter an alias for this chat."),
870 chat->alias, FALSE, FALSE, 870 chat->alias, FALSE, FALSE, NULL,
871 _("Alias"), G_CALLBACK(alias_chat_cb), 871 _("Alias"), G_CALLBACK(alias_chat_cb),
872 _("Cancel"), NULL, chat); 872 _("Cancel"), NULL, chat);
873 } 873 }
874 874
875 static void 875 static void
882 void 882 void
883 alias_dialog_contact(GaimContact *contact) 883 alias_dialog_contact(GaimContact *contact)
884 { 884 {
885 gaim_request_input(NULL, _("Alias Contact"), NULL, 885 gaim_request_input(NULL, _("Alias Contact"), NULL,
886 _("Enter an alias for this contact."), 886 _("Enter an alias for this contact."),
887 contact->alias, FALSE, FALSE, 887 contact->alias, FALSE, FALSE, NULL,
888 _("Alias"), G_CALLBACK(alias_contact_cb), 888 _("Alias"), G_CALLBACK(alias_contact_cb),
889 _("Cancel"), NULL, contact); 889 _("Cancel"), NULL, contact);
890 } 890 }
891 891
892 static void 892 static void
901 alias_dialog_bud(GaimBuddy *b) 901 alias_dialog_bud(GaimBuddy *b)
902 { 902 {
903 char *secondary = g_strdup_printf(_("Enter an alias for %s."), b->name); 903 char *secondary = g_strdup_printf(_("Enter an alias for %s."), b->name);
904 904
905 gaim_request_input(NULL, _("Alias Buddy"), NULL, 905 gaim_request_input(NULL, _("Alias Buddy"), NULL,
906 secondary, b->alias, FALSE, FALSE, 906 secondary, b->alias, FALSE, FALSE, NULL,
907 _("Alias"), G_CALLBACK(alias_buddy_cb), 907 _("Alias"), G_CALLBACK(alias_buddy_cb),
908 _("Cancel"), NULL, b); 908 _("Cancel"), NULL, b);
909 909
910 g_free(secondary); 910 g_free(secondary);
911 } 911 }