From: Luke S. <lsc...@us...> - 2002-09-17 02:56:43
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv3324/src Modified Files: gaim.h Log Message: 6 does not convert cleanly to base 2. as a result, you cannot use 60 as a option this makes it use 80 instead. much better. Index: gaim.h =================================================================== RCS file: /cvsroot/gaim/gaim/src/gaim.h,v retrieving revision 1.337 retrieving revision 1.338 diff -u -d -r1.337 -r1.338 --- gaim.h 16 Sep 2002 08:35:21 -0000 1.337 +++ gaim.h 17 Sep 2002 02:56:40 -0000 1.338 @@ -333,7 +333,7 @@ #define OPT_AWAY_NO_AUTO_RESP 0x00000010 #define OPT_AWAY_QUEUE 0x00000020 #define OPT_AWAY_IDLE_RESP 0x00000040 -#define OPT_AWAY_QUEUE_UNREAD 0x00000060 +#define OPT_AWAY_QUEUE_UNREAD 0x00000080 extern guint away_resend; extern int report_idle; |