Mercurial > pidgin
changeset 5840:8f5ccf9e590a
[gaim-migrate @ 6271]
pop goes the namespace change
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Thu, 12 Jun 2003 12:29:24 +0000 |
parents | 5e685e42931e |
children | eeb72d03e189 |
files | src/gtkaccount.c src/main.c src/plugin.c src/plugin.h |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkaccount.c Thu Jun 12 05:54:07 2003 +0000 +++ b/src/gtkaccount.c Thu Jun 12 12:29:24 2003 +0000 @@ -503,7 +503,7 @@ gtk_widget_show(label); dialog->buddy_icon_entry = gtk_entry_new(); - gtk_entry_set_editable(GTK_ENTRY(dialog->buddy_icon_entry), FALSE); + gtk_editable_set_editable(GTK_EDITABLE(dialog->buddy_icon_entry), FALSE); gtk_box_pack_start(GTK_BOX(hbox), dialog->buddy_icon_entry, TRUE, TRUE, 0); gtk_widget_show(dialog->buddy_icon_entry);
--- a/src/main.c Thu Jun 12 05:54:07 2003 +0000 +++ b/src/main.c Thu Jun 12 12:29:24 2003 +0000 @@ -915,7 +915,7 @@ } /* load plugins we had when we quit */ - gaim_plugins_load_all(); + gaim_plugins_load_saved(); gaim_accounts_load();
--- a/src/plugin.c Thu Jun 12 05:54:07 2003 +0000 +++ b/src/plugin.c Thu Jun 12 12:29:24 2003 +0000 @@ -547,7 +547,7 @@ } void -gaim_plugins_load_all(void) +gaim_plugins_load_saved(void) { #ifdef GAIM_PLUGINS GList *f, *files = gaim_prefs_get_string_list("/plugins/loaded");
--- a/src/plugin.h Thu Jun 12 05:54:07 2003 +0000 +++ b/src/plugin.h Thu Jun 12 12:29:24 2003 +0000 @@ -252,7 +252,7 @@ /** * Attempts to load all the plugins that were loaded when gaim last quit */ -void gaim_plugins_load_all(void); +void gaim_plugins_load_saved(void); /** * Probes for plugins in the registered module paths.