Ticket #31508: patch-clang.diff
File patch-clang.diff, 1002 bytes (added by takanori@…, 13 years ago) |
---|
-
src/nsfont.m
old new 1286 1286 } 1287 1287 1288 1288 CGContextRestoreGState (gcontext); 1289 return ;1289 return 0; 1290 1290 } 1291 1291 #endif /* NS_IMPL_COCOA */ 1292 1292 -
src/nsimage.m
old new 325 325 326 326 /* Set color for a bitmap image (see initFromSkipXBM). Note that the alpha 327 327 is used as a mask, so we just memset the entire array. */ 328 - setXBMColor: (NSColor *)color328 - (void) setXBMColor: (NSColor *)color 329 329 { 330 330 NSSize s = [self size]; 331 331 int len = (int) s.width * s.height; -
src/nsterm.m
old new 5494 5494 NSTRACE (performDragOperation); 5495 5495 5496 5496 if (!emacs_event) 5497 return ;5497 return NO; 5498 5498 5499 5499 position = [self convertPoint: [sender draggingLocation] fromView: nil]; 5500 5500 x = lrint (position.x); y = lrint (position.y);