comparison src/prpl.c @ 4044:133cf6424c53

[gaim-migrate @ 4252] Stripped the old proto-specific smiley support out. The new proto-specific smileys won't be set by the prpl, but by a smiley theme settable from preferences. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 04 Dec 2002 05:12:06 +0000
parents 89b56ab2b692
children bf443ac50a07
comparison
equal deleted inserted replaced
4043:e25edee01c33 4044:133cf6424c53
750 reset_reg_dlg(); 750 reset_reg_dlg();
751 751
752 gtk_widget_show(regdlg); 752 gtk_widget_show(regdlg);
753 } 753 }
754 754
755 GSList *add_smiley(GSList *list, char *key, char **xpm, int show)
756 {
757 struct _prpl_smiley *smiley;
758
759 smiley = (struct _prpl_smiley *)g_new0(struct _prpl_smiley, 1);
760 smiley->key = g_strdup(key);
761 smiley->xpm = xpm;
762 smiley->show = show;
763 list = g_slist_append(list, smiley);
764
765 return list;
766 }
767
768 static gboolean delayed_unload(void *handle) { 755 static gboolean delayed_unload(void *handle) {
769 g_module_close(handle); 756 g_module_close(handle);
770 return FALSE; 757 return FALSE;
771 } 758 }
772 759