Update of /cvsroot/gaim/gaim/src/protocols/toc
In directory usw-pr-cvs1:/tmp/cvs-serv17205/src/protocols/toc
Modified Files:
toc.c
Log Message:
It looks like Toc was updated for the "Mobile" status.
Don't use toc.
Index: toc.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/toc/toc.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- toc.c 17 Mar 2002 20:23:33 -0000 1.44
+++ toc.c 19 Mar 2002 16:09:41 -0000 1.45
@@ -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;
}
|