comparison dwt/internal/cocoa/NSTableHeaderCell.d @ 60:62202ce0039f

Updated and fixed many modules to 3.514
author Jacob Carlborg <doob@me.com>
date Mon, 22 Dec 2008 15:10:19 +0100
parents d8635bb48c7c
children
comparison
equal deleted inserted replaced
59:83b0ad9d9238 60:62202ce0039f
40 OS.objc_msgSend(this.id, OS.sel_drawSortIndicatorWithFrame_inView_ascending_priority_, cellFrame, controlView !is null ? controlView.id : null, ascending, priority); 40 OS.objc_msgSend(this.id, OS.sel_drawSortIndicatorWithFrame_inView_ascending_priority_, cellFrame, controlView !is null ? controlView.id : null, ascending, priority);
41 } 41 }
42 42
43 public NSRect sortIndicatorRectForBounds(NSRect theRect) { 43 public NSRect sortIndicatorRectForBounds(NSRect theRect) {
44 NSRect result = NSRect(); 44 NSRect result = NSRect();
45 OS.objc_msgSend_stret(result, this.id, OS.sel_sortIndicatorRectForBounds_, theRect); 45 OS.objc_msgSend_stret(&result, this.id, OS.sel_sortIndicatorRectForBounds_, theRect);
46 return result; 46 return result;
47 } 47 }
48 48
49 } 49 }