Mercurial > pidgin
changeset 4182:05a456d5f799
[gaim-migrate @ 4413]
Blah. That dialog REALLY needs to be gtk2ified, but ill switch these as is for now
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Fri, 03 Jan 2003 07:07:37 +0000 |
parents | 4927676228f7 |
children | e6810f691393 |
files | src/dialogs.c |
diffstat | 1 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialogs.c Fri Jan 03 06:59:23 2003 +0000 +++ b/src/dialogs.c Fri Jan 03 07:07:37 2003 +0000 @@ -4380,16 +4380,17 @@ bbox = gtk_hbox_new(FALSE, 5); gtk_box_pack_start(GTK_BOX(mainbox), bbox, FALSE, FALSE, 0); - button = picture_button(rename_dialog, _("Cancel"), cancel_xpm); - gtk_box_pack_end(GTK_BOX(bbox), button, FALSE, FALSE, 0); - g_signal_connect(GTK_OBJECT(button), "clicked", - G_CALLBACK(destroy_dialog), rename_dialog); - button = picture_button(rename_dialog, _("OK"), ok_xpm); gtk_object_set_user_data(GTK_OBJECT(button), g); gtk_box_pack_end(GTK_BOX(bbox), button, FALSE, FALSE, 0); g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(do_rename_group), name_entry); + + button = picture_button(rename_dialog, _("Cancel"), cancel_xpm); + gtk_box_pack_end(GTK_BOX(bbox), button, FALSE, FALSE, 0); + g_signal_connect(GTK_OBJECT(button), "clicked", + G_CALLBACK(destroy_dialog), rename_dialog); + } gtk_widget_show_all(rename_dialog);