Mercurial > pidgin
changeset 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 | f16e17d42b43 |
children | 1f0660a2c893 |
files | src/multi.c src/prpl.c |
diffstat | 2 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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);
--- 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);