From: Sean E. <sea...@us...> - 2002-08-25 10:51:27
|
Update of /cvsroot/gaim/gaim/src/protocols/napster In directory usw-pr-cvs1:/tmp/cvs-serv7426/src/protocols/napster Modified Files: napster.c Log Message: 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. Index: napster.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/napster/napster.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- napster.c 17 Jun 2002 01:04:10 -0000 1.18 +++ napster.c 25 Aug 2002 10:51:24 -0000 1.19 @@ -286,7 +286,7 @@ } if (command == 0x194) { - do_error_dialog(buf, "Gaim: Napster Error"); + do_error_dialog(buf, NULL, GAIM_ERROR); g_free(buf); return; } @@ -294,8 +294,8 @@ if (command == 0x12e) { gchar buf2[NAP_BUF_LEN]; - g_snprintf(buf2, NAP_BUF_LEN, "Unable to add '%s' to your hotlist", buf); - do_error_dialog(buf2, "Gaim: Napster Error"); + g_snprintf(buf2, NAP_BUF_LEN, "Unable to add '%s' to your Napster hotlist", buf); + do_error_dialog(buf2, NULL, GAIM_ERROR); g_free(buf); return; @@ -375,7 +375,7 @@ /* If we have some kind of error, get outta here */ if (command == 0x00) { - do_error_dialog(buf, "Gaim: Napster Error"); + do_error_dialog(buf, NULL, GAIM_ERROR); gaim_input_remove(ndata->inpa); ndata->inpa = 0; close(source); |