diff pidgin/gtkconv.c @ 15699:1229a0cd9126

docklet pending status
author Sean Egan <seanegan@gmail.com>
date Sun, 25 Feb 2007 09:07:43 +0000
parents 0457791756e7
children 8797ee49609f
line wrap: on
line diff
--- a/pidgin/gtkconv.c	Sun Feb 25 03:22:37 2007 +0000
+++ b/pidgin/gtkconv.c	Sun Feb 25 09:07:43 2007 +0000
@@ -3344,7 +3344,7 @@
 	const char *image = NULL;
 
 	if (flags & GAIM_CBFLAGS_FOUNDER) {
-		image = "founder.png";
+		image = PIDGIN_STOCK_STATUS_FOUNDER;
 	} else if (flags & GAIM_CBFLAGS_OP) {
 		image = PIDGIN_STOCK_STATUS_OPERATOR;
 	} else if (flags & GAIM_CBFLAGS_HALFOP) {
@@ -3352,7 +3352,7 @@
 	} else if (flags & GAIM_CBFLAGS_VOICE) {
 		image = PIDGIN_STOCK_STATUS_VOICE;
 	} else if ((!flags) && gaim_conv_chat_is_user_ignored(chat, name)) {
-		image = "ignored.png";
+		image = PIDGIN_STOCK_STATUS_IGNORED;
 	} else {
 		return NULL;
 	}