comparison dwt/internal/cocoa/NSGlyphGenerator.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
32 super(id); 32 super(id);
33 } 33 }
34 34
35 public void generateGlyphsForGlyphStorage (id glyphStorage, NSUInteger nChars, NSUInteger* glyphIndex, NSUInteger* charIndex) 35 public void generateGlyphsForGlyphStorage (id glyphStorage, NSUInteger nChars, NSUInteger* glyphIndex, NSUInteger* charIndex)
36 { 36 {
37 OS.objc_msgSend(this.id, OS.sel_generateGlyphsForGlyphStorage_1desiredNumberOfCharacters_1glyphIndex_1characterIndex_1, 37 OS.objc_msgSend(this.id_, OS.sel_generateGlyphsForGlyphStorage_1desiredNumberOfCharacters_1glyphIndex_1characterIndex_1,
38 glyphStorage !is null ? glyphStorage.id : null, nChars, glyphIndex, charIndex); 38 glyphStorage !is null ? glyphStorage.id_ : null, nChars, glyphIndex, charIndex);
39 } 39 }
40 40
41 public static id sharedGlyphGenerator () 41 public static id sharedGlyphGenerator ()
42 { 42 {
43 objc.id result = OS.objc_msgSend(OS.class_NSGlyphGenerator, OS.sel_sharedGlyphGenerator); 43 objc.id result = OS.objc_msgSend(OS.class_NSGlyphGenerator, OS.sel_sharedGlyphGenerator);