comparison src/multi.c @ 1436:f6a9bd50fd19

[gaim-migrate @ 1446] this didn't bother me until *SOMEONE* pointed it out ;). and benjamin, if you read the gaim cvs logs, no, i haven't figured out what Qt's problem is, and I run at 75 dpi, not 100. but I bet kaim would look quite a bit different if you developed on my machine ;) Anyway, now close.xpm is only used once, and not for closing, despite the name. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 28 Jan 2001 09:34:22 +0000
parents bf041349b11e
children 38e8391aa563
comparison
equal deleted inserted replaced
1435:f16e17d42b43 1436:f6a9bd50fd19
27 27
28 #include "pixmaps/gnome_add.xpm" 28 #include "pixmaps/gnome_add.xpm"
29 #include "pixmaps/gnome_preferences.xpm" 29 #include "pixmaps/gnome_preferences.xpm"
30 #include "pixmaps/join.xpm" 30 #include "pixmaps/join.xpm"
31 #include "pixmaps/gnome_remove.xpm" 31 #include "pixmaps/gnome_remove.xpm"
32 #include "pixmaps/gnome_close.xpm"
33 #include "pixmaps/cancel.xpm" 32 #include "pixmaps/cancel.xpm"
34 #include "pixmaps/ok.xpm" 33 #include "pixmaps/ok.xpm"
35 34
36 #define LOGIN_STEPS 5 35 #define LOGIN_STEPS 5
37 36
668 667
669 button = picture_button(acctedit, _("Delete"), gnome_remove_xpm); 668 button = picture_button(acctedit, _("Delete"), gnome_remove_xpm);
670 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0); 669 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
671 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(del_acct), NULL); 670 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(del_acct), NULL);
672 671
673 button = picture_button(acctedit, _("Close"), gnome_close_xpm); 672 button = picture_button(acctedit, _("Close"), cancel_xpm);
674 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0); 673 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
675 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(acctedit_close), W); 674 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(acctedit_close), W);
676 675
677 gtk_widget_show_all(acctedit); 676 gtk_widget_show_all(acctedit);
678 } 677 }