comparison dwt/internal/cocoa/NSSecureTextFieldCell.d @ 1:8b48be5454ce

The internal cocoa classes compile now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 19 Aug 2008 17:35:17 +0200
parents 380af2bdd8e5
children f565d3a95c0a
comparison
equal deleted inserted replaced
0:380af2bdd8e5 1:8b48be5454ce
30 super(id); 30 super(id);
31 } 31 }
32 32
33 public bool echosBullets () 33 public bool echosBullets ()
34 { 34 {
35 return OS.objc_msgSend(this.id, OS.sel_echosBullets) !is null; 35 return OS.objc_msgSend(this.id_, OS.sel_echosBullets) !is null;
36 } 36 }
37 37
38 public void setEchosBullets (bool flag) 38 public void setEchosBullets (bool flag)
39 { 39 {
40 OS.objc_msgSend(this.id, OS.sel_setEchosBullets_1, flag); 40 OS.objc_msgSend(this.id_, OS.sel_setEchosBullets_1, flag);
41 } 41 }
42 42
43 } 43 }