comparison dstep/appkit/NSPathCell.d @ 25:b9de51448c6b

Added an id constructor. Changed the string mixin to a template mixin. Added support for building as a dynamic library
author Jacob Carlborg <doob@me.com>
date Tue, 06 Apr 2010 11:37:27 +0200
parents 19885b43130e
children
comparison
equal deleted inserted replaced
24:ab33fc0c3fc1 25:b9de51448c6b
35 NSPathStylePopUp 35 NSPathStylePopUp
36 } 36 }
37 37
38 class NSPathCell : NSActionCell 38 class NSPathCell : NSActionCell
39 { 39 {
40 mixin (ObjcWrap); 40 mixin ObjcWrap;
41
42 this (id object)
43 {
44 super(object);
45 }
41 46
42 int pathStyle () 47 int pathStyle ()
43 { 48 {
44 return invokeObjcSelf!(int, "pathStyle"); 49 return invokeObjcSelf!(int, "pathStyle");
45 } 50 }