# HG changeset patch # User Eric Warmenhoven # Date 980674462 0 # Node ID f6a9bd50fd19e0641237b2783bafef8148475687 # Parent f16e17d42b43e940c1972e19bc3ef8f944ac9fc0 [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 diff -r f16e17d42b43 -r f6a9bd50fd19 src/multi.c --- a/src/multi.c Sun Jan 28 09:16:50 2001 +0000 +++ b/src/multi.c Sun Jan 28 09:34:22 2001 +0000 @@ -29,7 +29,6 @@ #include "pixmaps/gnome_preferences.xpm" #include "pixmaps/join.xpm" #include "pixmaps/gnome_remove.xpm" -#include "pixmaps/gnome_close.xpm" #include "pixmaps/cancel.xpm" #include "pixmaps/ok.xpm" @@ -670,7 +669,7 @@ gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0); gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(del_acct), NULL); - button = picture_button(acctedit, _("Close"), gnome_close_xpm); + button = picture_button(acctedit, _("Close"), cancel_xpm); gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0); gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(acctedit_close), W); diff -r f16e17d42b43 -r f6a9bd50fd19 src/prpl.c --- a/src/prpl.c Sun Jan 28 09:16:50 2001 +0000 +++ b/src/prpl.c Sun Jan 28 09:34:22 2001 +0000 @@ -23,7 +23,6 @@ #include "pixmaps/ok.xpm" #include "pixmaps/cancel.xpm" -#include "pixmaps/close.xpm" #include "pixmaps/register.xpm" extern void toc_init(struct prpl *); @@ -266,7 +265,7 @@ gtk_box_pack_end(GTK_BOX(box), hbox, FALSE, FALSE, 5); gtk_widget_show(hbox); - button = picture_button(regdialog, _("Close"), close_xpm); + button = picture_button(regdialog, _("Close"), cancel_xpm); gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 5); gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(delete_reg), NULL);