comparison dstep/appkit/NSRuleEditor.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
115 NSRuleEditorRowTypeCompound 115 NSRuleEditorRowTypeCompound
116 } 116 }
117 117
118 class NSRuleEditor : NSControl 118 class NSRuleEditor : NSControl
119 { 119 {
120 mixin (ObjcWrap); 120 mixin ObjcWrap;
121
122 this (id object)
123 {
124 super(object);
125 }
121 126
122 void setDelegate (Object arg0) 127 void setDelegate (Object arg0)
123 { 128 {
124 return invokeObjcSelf!(void, "setDelegate:", Object)(arg0); 129 return invokeObjcSelf!(void, "setDelegate:", Object)(arg0);
125 } 130 }