comparison src/buddy_chat.c @ 4423:4bb433a7331c

[gaim-migrate @ 4696] Hopefully this will fix Luke's lil problem. I have a feeling it won't, thought. Also, I swapped the buttons for the join chat dialog. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 26 Jan 2003 05:11:36 +0000
parents 5fb47ec9bfe4
children 42d53c416bb9
comparison
equal deleted inserted replaced
4422:2fd80799d8f4 4423:4bb433a7331c
291 gtk_box_pack_start(GTK_BOX(mainbox), sep, FALSE, FALSE, 0); 291 gtk_box_pack_start(GTK_BOX(mainbox), sep, FALSE, FALSE, 0);
292 292
293 bbox = gtk_hbox_new(FALSE, 5); 293 bbox = gtk_hbox_new(FALSE, 5);
294 gtk_box_pack_start(GTK_BOX(mainbox), bbox, FALSE, FALSE, 0); 294 gtk_box_pack_start(GTK_BOX(mainbox), bbox, FALSE, FALSE, 0);
295 295
296 /* Join button. */
297 join = gaim_pixbuf_button_from_stock(_("Join"), GTK_STOCK_JUMP_TO,
298 GAIM_BUTTON_HORIZONTAL);
299 gtk_box_pack_end(GTK_BOX(bbox), join, FALSE, FALSE, 0);
300 g_signal_connect(G_OBJECT(join), "clicked",
301 G_CALLBACK(do_join_chat), NULL);
296 /* Cancel button. */ 302 /* Cancel button. */
297 cancel = gaim_pixbuf_button_from_stock(_("Cancel"), GTK_STOCK_CANCEL, 303 cancel = gaim_pixbuf_button_from_stock(_("Cancel"), GTK_STOCK_CANCEL,
298 GAIM_BUTTON_HORIZONTAL); 304 GAIM_BUTTON_HORIZONTAL);
299 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 0); 305 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 0);
300 g_signal_connect(G_OBJECT(cancel), "clicked", 306 g_signal_connect(G_OBJECT(cancel), "clicked",
301 G_CALLBACK(destroy_join_chat), joinchat); 307 G_CALLBACK(destroy_join_chat), joinchat);
302 308
303 /* Join button. */
304 join = gaim_pixbuf_button_from_stock(_("Join"), GTK_STOCK_JUMP_TO,
305 GAIM_BUTTON_HORIZONTAL);
306 gtk_box_pack_end(GTK_BOX(bbox), join, FALSE, FALSE, 0);
307 g_signal_connect(G_OBJECT(join), "clicked",
308 G_CALLBACK(do_join_chat), NULL);
309 } 309 }
310 310
311 gtk_widget_show_all(joinchat); 311 gtk_widget_show_all(joinchat);
312 } 312 }