Revision
2865
Author
lsansonetti@apple.com
Date
2009-10-20 00:00:25 -0700 (Tue, 20 Oct 2009)

Log Message

working missing 64-bit informa protocol annotations with NSRange

Modified Paths

Diff

Modified: MacRuby/trunk/bridgesupport.cpp (2864 => 2865)


--- MacRuby/trunk/bridgesupport.cpp	2009-10-20 03:36:35 UTC (rev 2864)
+++ MacRuby/trunk/bridgesupport.cpp	2009-10-20 07:00:25 UTC (rev 2865)
@@ -1012,6 +1012,9 @@
 		else if (strncmp(p, "{_NSRect=", 9) == 0) {
 		    strlcat(type, "{CGRect={CGPoint=dd}{CGSize=dd}}", typelen);
 		}
+		else if (strncmp(p, "{_NSRange=", 10) == 0) {
+		    strlcat(type, "{_NSRange=QQ}", typelen);
+		} 
 		else {
 		    char buf[100];
 		    strncpy(buf, p, len);