comparison dwt/ole/win32/OleFrame.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 619faee45ef6
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
71 private MenuItem[] containerMenuItems; 71 private MenuItem[] containerMenuItems;
72 private MenuItem[] windowMenuItems; 72 private MenuItem[] windowMenuItems;
73 73
74 private Listener listener; 74 private Listener listener;
75 75
76 private static char[] CHECK_FOCUS = "OLE_CHECK_FOCUS"; //$NON-NLS-1$ 76 private static String CHECK_FOCUS = "OLE_CHECK_FOCUS"; //$NON-NLS-1$
77 private static char[] HHOOK = "OLE_HHOOK"; //$NON-NLS-1$ 77 private static String HHOOK = "OLE_HHOOK"; //$NON-NLS-1$
78 private static char[] HHOOKMSG = "OLE_HHOOK_MSG"; //$NON-NLS-1$ 78 private static String HHOOKMSG = "OLE_HHOOK_MSG"; //$NON-NLS-1$
79 79
80 private static bool ignoreNextKey; 80 private static bool ignoreNextKey;
81 private static const short [] ACCENTS = [ cast(short)'~', '`', '\'', '^', '"']; 81 private static const short [] ACCENTS = [ cast(short)'~', '`', '\'', '^', '"'];
82 82
83 private static const char[] CONSUME_KEY = "org.eclipse.swt.OleFrame.ConsumeKey"; //$NON-NLS-1$ 83 private static const String CONSUME_KEY = "org.eclipse.swt.OleFrame.ConsumeKey"; //$NON-NLS-1$
84 84
85 /** 85 /**
86 * Create an OleFrame child widget using style bits 86 * Create an OleFrame child widget using style bits
87 * to select a particular look or set of properties. 87 * to select a particular look or set of properties.
88 * 88 *