[Shadowirc-commits] CVS: shadowirc/src/plugins/userlist Info-Userlist.plist,1.2,1.3 ULList.c,1.12,1.
Status: Alpha
Brought to you by:
dshadow
|
From: John B. <ds...@us...> - 2005-05-01 04:36:21
|
Update of /cvsroot/shadowirc/shadowirc/src/plugins/userlist In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5203/src/plugins/userlist Modified Files: Info-Userlist.plist ULList.c userlist.c Log Message: Fix signedness comparison warnings, rev to and require 2.0a15 Index: Info-Userlist.plist =================================================================== RCS file: /cvsroot/shadowirc/shadowirc/src/plugins/userlist/Info-Userlist.plist,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Info-Userlist.plist 13 Aug 2004 23:22:04 -0000 1.2 +++ Info-Userlist.plist 1 May 2005 04:35:55 -0000 1.3 @@ -19,6 +19,6 @@ <key>CFBundleSignature</key> <string>SIRC</string> <key>CFBundleVersion</key> - <string>2.0a12</string> + <string>2.0a15</string> </dict> </plist> Index: ULList.c =================================================================== RCS file: /cvsroot/shadowirc/shadowirc/src/plugins/userlist/ULList.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ULList.c 2 Nov 2002 04:39:24 -0000 1.12 +++ ULList.c 1 May 2005 04:35:55 -0000 1.13 @@ -1,6 +1,6 @@ /* ShadowIRC Userlist - Copyright (C) 1997-2002 John Bafford + Copyright (C) 1997-2005 John Bafford ds...@sh... http://www.shadowirc.com @@ -152,7 +152,7 @@ Str255 s; Str255 s2; channelPtr ch; - long num; + UInt32 num; if(!ul || ul->ulType != ulGlobal) return; @@ -185,4 +185,4 @@ GetWTitle(ul->uwin, s2); if(!pstrcmp(s, s2)) SetWTitle(ul->uwin, s); -} \ No newline at end of file +} Index: userlist.c =================================================================== RCS file: /cvsroot/shadowirc/shadowirc/src/plugins/userlist/userlist.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- userlist.c 13 Aug 2004 23:22:04 -0000 1.34 +++ userlist.c 1 May 2005 04:35:55 -0000 1.35 @@ -1,6 +1,6 @@ /* ShadowIRC Userlist - Copyright (C) 1997-2004 John Bafford + Copyright (C) 1997-2005 John Bafford ds...@sh... http://www.shadowirc.com @@ -110,7 +110,7 @@ static ULI ULGetWindowProperty(WindowPtr w) { ULI ul; - long actualSize; + UInt32 actualSize; GetWindowProperty(w, kUserlistSignature, kUserlistWindow, sizeof(ul), &actualSize, &ul); @@ -603,7 +603,6 @@ } } */ - #pragma mark - @@ -840,7 +839,7 @@ static void DBItemNotify(ControlRef browser, DataBrowserItemID item, DataBrowserItemNotification message) { ULI ul; - long actualSize; + UInt32 actualSize; UserListPtr u = (UserListPtr)item; switch(message) @@ -1268,7 +1267,7 @@ LineTo(r.right, r.top); } -/* ¥¥¥ */ +// ¥¥¥ if(ul->rightSide) { r.left += kInWindowBorder; @@ -1287,7 +1286,6 @@ LineTo(r.left, r.top); LineTo(r.right, r.top); ValidWindowRect(ul->uwin, &r); -/* ¥¥¥ */ } } @@ -1804,7 +1802,7 @@ shadowircColors = sidrIN->shadowircColors; l=((pVersionCheckDataPtr)sidrIN->messageData)->version; - if(l<0x0200000C) //2.0a12 + if(l<0x0200000F) //2.0a15 { ((pVersionCheckDataPtr)sidrIN->messageData)->version = pVersionShadowIRCTooOld; displayOldVersionMsg(); |