comparison dwt/internal/cocoa/NSSize.d @ 60:62202ce0039f

Updated and fixed many modules to 3.514
author Jacob Carlborg <doob@me.com>
date Mon, 22 Dec 2008 15:10:19 +0100
parents d8635bb48c7c
children 476f8d5c0b07
comparison
equal deleted inserted replaced
59:83b0ad9d9238 60:62202ce0039f
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * 10 *
11 * Port to the D programming language: 11 * Port to the D programming language:
12 * Jacob Carlborg <doob@me.com> 12 * Jacob Carlborg <doob@me.com>
13 *******************************************************************************/ 13 *******************************************************************************/
14
15 module dwt.internal.cocoa.NSSize; 14 module dwt.internal.cocoa.NSSize;
16 15
17 import dwt.dwthelper.utils; 16 import dwt.dwthelper.utils;
18 import dwt.internal.c.Carbon; 17 import dwt.internal.c.Carbon;
19 18
20 19
21 public struct NSSize { 20 public struct NSSize {
22 public CGFloat width; 21 public CGFloat width = 0;
23 public CGFloat height; 22 public CGFloat height = 0;
24 //public static final int sizeof = OS.NSSize_sizeof(); 23 //public static final int sizeof = OS.NSSize_sizeof();
25 } 24 }