changeset 5057:317bdeedc729

[gaim-migrate @ 5408] Now you should be able to unset aliases again. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 07 Apr 2003 04:55:48 +0000
parents 18ec87e54201
children 74aeae6afdab
files src/dialogs.c
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/dialogs.c	Mon Apr 07 04:49:04 2003 +0000
+++ b/src/dialogs.c	Mon Apr 07 04:55:48 2003 +0000
@@ -3316,8 +3316,6 @@
 		gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(alias_dialog)->vbox), 12);
 		gtk_container_set_border_width(
 				GTK_CONTAINER(GTK_DIALOG(alias_dialog)->vbox), 6);
-		gtk_dialog_set_response_sensitive(GTK_DIALOG(alias_dialog),
-										  GTK_RESPONSE_OK, FALSE);
 
 		/* The main hbox container. */
 		hbox = gtk_hbox_new(FALSE, 12);
@@ -3367,9 +3365,6 @@
 		gtk_label_set_mnemonic_widget(GTK_LABEL(label), info->name_entry);
 		gtk_entry_set_text(GTK_ENTRY(info->name_entry), info->buddy->name);
 
-		g_signal_connect(G_OBJECT(info->name_entry), "changed",
-						 G_CALLBACK(dialog_set_ok_sensitive), alias_dialog);
-
 		/* The "Alias:" label. */
 		label = gtk_label_new(NULL);
 		gtk_label_set_markup_with_mnemonic(GTK_LABEL(label), _("_Alias:"));
@@ -3387,9 +3382,6 @@
 			gtk_entry_set_text(GTK_ENTRY(info->alias_entry),
 							   info->buddy->alias);
 
-		g_signal_connect(G_OBJECT(info->alias_entry), "changed",
-						 G_CALLBACK(dialog_set_ok_sensitive), alias_dialog);
-
 		g_signal_connect(G_OBJECT(alias_dialog), "response",
 						 G_CALLBACK(do_alias_buddy), info);
 	}