comparison org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/dnd/DND.d @ 49:7a2dd761a8b2

more work until dmd 2.026 linux segfaults.
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 12:59:54 +0100
parents ddbfe84d86df
children c01d033c633a
comparison
equal deleted inserted replaced
48:ddbfe84d86df 49:7a2dd761a8b2
211 * is created for a control, it is stored as a property in the control 211 * is created for a control, it is stored as a property in the control
212 * using <code>setData(String, Object)</code>. 212 * using <code>setData(String, Object)</code>.
213 * 213 *
214 * @since 3.4 214 * @since 3.4
215 */ 215 */
216 public static final String DROP_TARGET_KEY = "DropTarget"; //$NON-NLS-1$ 216 public static const String DROP_TARGET_KEY = "DropTarget"; //$NON-NLS-1$
217 217
218 /** 218 /**
219 * DragSource Key: The string constant for looking up the drag source 219 * DragSource Key: The string constant for looking up the drag source
220 * for a control using <code>getData(String)</code>. When a drag source 220 * for a control using <code>getData(String)</code>. When a drag source
221 * is created for a control, it is stored as a property in the control 221 * is created for a control, it is stored as a property in the control
222 * using <code>setData(String, Object)</code>. 222 * using <code>setData(String, Object)</code>.
223 * 223 *
224 * @since 3.4 224 * @since 3.4
225 */ 225 */
226 public static final String DRAG_SOURCE_KEY = "DragSource"; //$NON-NLS-1$ 226 public static const String DRAG_SOURCE_KEY = "DragSource"; //$NON-NLS-1$
227 227
228 static const String INIT_DRAG_MESSAGE = "Cannot initialize Drag"; //$NON-NLS-1$ 228 static const String INIT_DRAG_MESSAGE = "Cannot initialize Drag"; //$NON-NLS-1$
229 static const String INIT_DROP_MESSAGE = "Cannot initialize Drop"; //$NON-NLS-1$ 229 static const String INIT_DROP_MESSAGE = "Cannot initialize Drop"; //$NON-NLS-1$
230 static const String CANNOT_SET_CLIPBOARD_MESSAGE = "Cannot set data in clipboard"; //$NON-NLS-1$ 230 static const String CANNOT_SET_CLIPBOARD_MESSAGE = "Cannot set data in clipboard"; //$NON-NLS-1$
231 static const String INVALID_DATA_MESSAGE = "Data does not have correct format for type"; //$NON-NLS-1$ 231 static const String INVALID_DATA_MESSAGE = "Data does not have correct format for type"; //$NON-NLS-1$