comparison dwt/internal/cocoa/SWTProgressIndicator.d @ 37:642f460a0908

Fixed a lot of compile errors, a "hello world" app compiles now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 10 Oct 2008 12:29:48 +0200
parents f565d3a95c0a
children d8635bb48c7c
comparison
equal deleted inserted replaced
36:db5a898b2119 37:642f460a0908
18 import dwt.internal.cocoa.OS; 18 import dwt.internal.cocoa.OS;
19 19
20 public class SWTProgressIndicator : NSProgressIndicator { 20 public class SWTProgressIndicator : NSProgressIndicator {
21 21
22 public void setTag (NSInteger tag) { 22 public void setTag (NSInteger tag) {
23 OS.objc_msgSend(id, OS.sel_setTag_1, tag); 23 OS.objc_msgSend(id_, OS.sel_setTag_1, tag);
24 } 24 }
25 } 25 }