comparison src/perl.c @ 3427:8fa61405af2b

[gaim-migrate @ 3453] Who never commits anything *now*, Etan? I changed most of the error message text around. If you think any of it should be different, just let me know, or send a patch. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 25 Aug 2002 10:51:24 +0000
parents c731327dbc47
children b48065e52337
comparison
equal deleted inserted replaced
3426:ccbcc11a68c2 3427:8fa61405af2b
408 dXSARGS; 408 dXSARGS;
409 items = 0; 409 items = 0;
410 410
411 title = SvPV(ST(0), junk); 411 title = SvPV(ST(0), junk);
412 message = SvPV(ST(1), junk); 412 message = SvPV(ST(1), junk);
413 do_error_dialog(message, title); 413 do_error_dialog(message, NULL, GAIM_INFO);
414 XSRETURN(0); 414 XSRETURN(0);
415 } 415 }
416 416
417 XS (XS_GAIM_buddy_list) 417 XS (XS_GAIM_buddy_list)
418 { 418 {
874 p = (struct perlscript *)s->data; 874 p = (struct perlscript *)s->data;
875 at += g_snprintf(buf + at, sizeof(buf) - at, "%s\n", p->name); 875 at += g_snprintf(buf + at, sizeof(buf) - at, "%s\n", p->name);
876 s = s->next; 876 s = s->next;
877 } 877 }
878 878
879 do_error_dialog(buf, _("Perl Scripts")); 879 do_error_dialog(buf, NULL, GAIM_INFO);
880 } 880 }
881 881
882 #endif /* USE_PERL */ 882 #endif /* USE_PERL */