From: Rob F. <rob...@us...> - 2002-04-26 01:33:38
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv16903/src/protocols/msn Modified Files: msn.c Log Message: thanks, plutonski Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- msn.c 25 Apr 2002 23:11:49 -0000 1.72 +++ msn.c 26 Apr 2002 01:33:35 -0000 1.73 @@ -13,6 +13,7 @@ #include "pixmaps/msn_online.xpm" #include "pixmaps/msn_away.xpm" +#include "pixmaps/msn_occ.xpm" /* MSN Smiley Faces */ #include "pixmaps/protocols/msn/msn_angry.xpm" @@ -1892,7 +1893,12 @@ { if (uc == 0) return msn_online_xpm; - + + uc >>= 1; + + if (uc == 2 || uc == 6) + return msn_occ_xpm; + return msn_away_xpm; } |