# HG changeset patch # User Sean Egan # Date 1016554181 0 # Node ID 219dfcbd67373bc87be0680e8858d7d844d23e49 # Parent 71c88f2343a6fb6c2ee189e6b4e7676151578fb5 [gaim-migrate @ 3097] It looks like Toc was updated for the "Mobile" status. Don't use toc. committer: Tailor Script diff -r 71c88f2343a6 -r 219dfcbd6737 src/protocols/toc/toc.c --- a/src/protocols/toc/toc.c Tue Mar 19 07:15:43 2002 +0000 +++ b/src/protocols/toc/toc.c Tue Mar 19 16:09:41 2002 +0000 @@ -47,6 +47,7 @@ #include "pixmaps/away_icon.xpm" #include "pixmaps/dt_icon.xpm" #include "pixmaps/free_icon.xpm" +#include "pixmaps/wireless_icon.xpm" #define REVISION "penguin" @@ -83,6 +84,7 @@ #define UC_ADMIN 0x04 #define UC_UNCONFIRMED 0x08 #define UC_NORMAL 0x10 +#define UC_WIRELESS 0x20 struct ft_request { struct gaim_connection *gc; @@ -645,6 +647,9 @@ case 'O': type |= UC_NORMAL; break; + case 'C': + type |= UC_WIRELESS; + break; default: break; } @@ -1189,6 +1194,8 @@ return (char **)admin_icon_xpm; if (uc & UC_UNCONFIRMED) return (char **)dt_icon_xpm; + if (uc & UC_WIRELESS) + return (char **)wireless_icon_xpm; return NULL; }