comparison src/buddy_chat.c @ 4092:7edd02612086

[gaim-migrate @ 4307] (10:05:22) deryni: http://deryni.perlmonk.org/cancel-ok.patch <- all dialogs should be [Cancel] [Ok] now, and I redesigned the alias dialog because the buttons moved (10:05:35) LSchiere: is that the hig order? (10:05:57) deryni: that's the order faceprint didn't like the one Sean said the Get Info dialog did right (10:06:03) LSchiere: kay (10:06:13) deryni: with [Ok] on the right committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 17 Dec 2002 15:12:24 +0000
parents 0c131a8ea3d1
children d3c8d2b40494
comparison
equal deleted inserted replaced
4091:0c131a8ea3d1 4092:7edd02612086
308 /* buttons */ 308 /* buttons */
309 309
310 bbox = gtk_hbox_new(FALSE, 5); 310 bbox = gtk_hbox_new(FALSE, 5);
311 gtk_box_pack_start(GTK_BOX(mainbox), bbox, FALSE, FALSE, 0); 311 gtk_box_pack_start(GTK_BOX(mainbox), bbox, FALSE, FALSE, 0);
312 312
313 join = picture_button(joinchat, _("Join"), join_xpm);
314 gtk_box_pack_end(GTK_BOX(bbox), join, FALSE, FALSE, 0);
315 gtk_signal_connect(GTK_OBJECT(join), "clicked", GTK_SIGNAL_FUNC(do_join_chat), NULL);
316
313 cancel = picture_button(joinchat, _("Cancel"), cancel_xpm); 317 cancel = picture_button(joinchat, _("Cancel"), cancel_xpm);
314 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 0); 318 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 0);
315 gtk_signal_connect(GTK_OBJECT(cancel), "clicked", 319 gtk_signal_connect(GTK_OBJECT(cancel), "clicked",
316 GTK_SIGNAL_FUNC(destroy_join_chat), joinchat); 320 GTK_SIGNAL_FUNC(destroy_join_chat), joinchat);
317
318 join = picture_button(joinchat, _("Join"), join_xpm);
319 gtk_box_pack_end(GTK_BOX(bbox), join, FALSE, FALSE, 0);
320 gtk_signal_connect(GTK_OBJECT(join), "clicked", GTK_SIGNAL_FUNC(do_join_chat), NULL);
321 } 321 }
322 gtk_widget_show_all(joinchat); 322 gtk_widget_show_all(joinchat);
323 } 323 }
324 324
325 325