comparison src/perl.c @ 3510:e23909729192

[gaim-migrate @ 3576] A GNOME2 docklet. This follows the opendesktop.org specs used by GNOME2 and (I think) KDE in Redhat's null (I don't think vanilla KDE supports it yet) For GNOME--you will need to have the GNOME Panel Notification Area installed. This replaces the applet--thanks Robert McQueen. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: configure.ac configure.in plugins/Makefile.am src/aim.c CVS: src/buddy.c src/core.h src/module.c src/multi.c src/perl.c CVS: src/server.c src/ui.h CVS: ---------------------------------------------------------------------- committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 14 Sep 2002 23:27:28 +0000
parents b48065e52337
children 6b0cb60162f4
comparison
equal deleted inserted replaced
3509:8bad870eaea1 3510:e23909729192
755 break; 755 break;
756 case event_quit: 756 case event_quit:
757 buf = g_malloc0(1); 757 buf = g_malloc0(1);
758 break; 758 break;
759 case event_new_conversation: 759 case event_new_conversation:
760 case event_del_conversation:
760 buf = g_strdup_printf("'%s'", escape_quotes(arg1)); 761 buf = g_strdup_printf("'%s'", escape_quotes(arg1));
761 break; 762 break;
762 case event_im_displayed_sent: 763 case event_im_displayed_sent:
763 { 764 {
764 char *tmp2, *tmp3; 765 char *tmp2, *tmp3;
778 g_free(tmp2); 779 g_free(tmp2);
779 g_free(tmp3); 780 g_free(tmp3);
780 } 781 }
781 break; 782 break;
782 default: 783 default:
784 debug_printf("someone forgot to handle %s in the perl binding\n", event_name(event));
783 return 0; 785 return 0;
784 } 786 }
785 787
786 for (handler = perl_event_handlers; handler != NULL; handler = handler->next) { 788 for (handler = perl_event_handlers; handler != NULL; handler = handler->next) {
787 data = handler->data; 789 data = handler->data;