diff options
author | marha <marha@users.sourceforge.net> | 2011-06-03 08:18:04 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-06-03 08:18:04 +0200 |
commit | cda19b1d226d565f1ca4327aeae827c621b3dfd6 (patch) | |
tree | 8a511d718c888b17c257a905607068613359f9a6 /xorg-server/hw/xquartz/pbproxy/x-selection.m | |
parent | 4d7ec99788d8a1d56ff4bccea279ae8186b18cdc (diff) | |
download | vcxsrv-cda19b1d226d565f1ca4327aeae827c621b3dfd6.tar.gz vcxsrv-cda19b1d226d565f1ca4327aeae827c621b3dfd6.tar.bz2 vcxsrv-cda19b1d226d565f1ca4327aeae827c621b3dfd6.zip |
xserver xkeyboard-config mesa git update 3 Jun 2011
Diffstat (limited to 'xorg-server/hw/xquartz/pbproxy/x-selection.m')
-rw-r--r-- | xorg-server/hw/xquartz/pbproxy/x-selection.m | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/xorg-server/hw/xquartz/pbproxy/x-selection.m b/xorg-server/hw/xquartz/pbproxy/x-selection.m index 7964f5193..b5f4dde5c 100644 --- a/xorg-server/hw/xquartz/pbproxy/x-selection.m +++ b/xorg-server/hw/xquartz/pbproxy/x-selection.m @@ -683,7 +683,11 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato return; } +#ifdef __LP64__ + DebugF ("pbtypes retainCount after containsObject: %lu\n", [pbtypes retainCount]); +#else DebugF ("pbtypes retainCount after containsObject: %u\n", [pbtypes retainCount]); +#endif data = [pb stringForType:NSStringPboardType]; @@ -704,7 +708,11 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato if (length < 50) { DebugF ("UTF-8: %s\n", bytes); +#ifdef __LP64__ + DebugF ("UTF-8 length: %lu\n", length); +#else DebugF ("UTF-8 length: %u\n", length); +#endif } } else @@ -1223,8 +1231,13 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato return; } +#ifdef __LP64__ + DebugF ("data retainCount before NSBitmapImageRep initWithData: %lu\n", + [data retainCount]); +#else DebugF ("data retainCount before NSBitmapImageRep initWithData: %u\n", [data retainCount]); +#endif bmimage = [[NSBitmapImageRep alloc] initWithData:data]; @@ -1235,8 +1248,13 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato return; } +#ifdef __LP64__ + DebugF ("data retainCount after NSBitmapImageRep initWithData: %lu\n", + [data retainCount]); +#else DebugF ("data retainCount after NSBitmapImageRep initWithData: %u\n", [data retainCount]); +#endif @try { @@ -1251,7 +1269,11 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato return; } +#ifdef __LP64__ + DebugF ("bmimage retainCount after TIFFRepresentation %lu\n", [bmimage retainCount]); +#else DebugF ("bmimage retainCount after TIFFRepresentation %u\n", [bmimage retainCount]); +#endif pbtypes = [NSArray arrayWithObjects:NSTIFFPboardType, nil]; @@ -1270,7 +1292,12 @@ get_property(Window win, Atom property, struct propdata *pdata, Bool delete, Ato [data autorelease]; +#ifdef __LP64__ + DebugF ("bmimage retainCount before release %lu\n", [bmimage retainCount]); +#else DebugF ("bmimage retainCount before release %u\n", [bmimage retainCount]); +#endif + [bmimage autorelease]; } |