diff 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
line wrap: on
line diff
--- a/src/dialogs.c	Sun Apr 18 05:47:16 2004 +0000
+++ b/src/dialogs.c	Sun Apr 18 06:22:42 2004 +0000
@@ -867,7 +867,7 @@
 {
 	gaim_request_input(NULL, _("Alias Chat"), NULL,
 					   _("Enter an alias for this chat."),
-					   chat->alias, FALSE, FALSE,
+					   chat->alias, FALSE, FALSE, NULL,
 					   _("Alias"), G_CALLBACK(alias_chat_cb),
 					   _("Cancel"), NULL, chat);
 }
@@ -884,7 +884,7 @@
 {
 	gaim_request_input(NULL, _("Alias Contact"), NULL,
 					   _("Enter an alias for this contact."),
-					   contact->alias, FALSE, FALSE,
+					   contact->alias, FALSE, FALSE, NULL,
 					   _("Alias"), G_CALLBACK(alias_contact_cb),
 					   _("Cancel"), NULL, contact);
 }
@@ -903,7 +903,7 @@
 	char *secondary = g_strdup_printf(_("Enter an alias for %s."), b->name);
 
 	gaim_request_input(NULL, _("Alias Buddy"), NULL,
-					   secondary, b->alias, FALSE, FALSE,
+					   secondary, b->alias, FALSE, FALSE, NULL,
 					   _("Alias"), G_CALLBACK(alias_buddy_cb),
 					   _("Cancel"), NULL, b);