diff plugins/napster.c @ 1327:113a3d16f1ce

[gaim-migrate @ 1337] hehe committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Wed, 20 Dec 2000 05:28:35 +0000
parents 08aa745310f6
children e2d8b713d928
line wrap: on
line diff
--- a/plugins/napster.c	Wed Dec 20 04:52:32 2000 +0000
+++ b/plugins/napster.c	Wed Dec 20 05:28:35 2000 +0000
@@ -37,6 +37,7 @@
 #include "multi.h"
 #include "prpl.h"
 #include "gaim.h"
+#include "pixmaps/napster.xpm"
 
 #define NAP_BUF_LEN 4096
 
@@ -521,13 +522,18 @@
 	}
 }
 
+static char** nap_list_icon(int uc)
+{
+	return napster_xpm;
+}
+
 static struct prpl *my_protocol = NULL;
 
 void nap_init(struct prpl *ret)
 {
 	ret->protocol = PROTO_NAPSTER;
 	ret->name = nap_name;
-	ret->list_icon = NULL;
+	ret->list_icon = nap_list_icon;
 	ret->action_menu = NULL;
 	ret->user_opts = NULL;
 	ret->login = nap_login;