comparison dwt/custom/MovementEvent.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 0f12f6bb9739
children c0d810de7093
comparison
equal deleted inserted replaced
237:98b80b00af79 238:380bad9f6852
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module dwt.custom.MovementEvent; 13 module dwt.custom.MovementEvent;
14
15 import dwt.dwthelper.utils;
14 16
15 import dwt.events.TypedEvent; 17 import dwt.events.TypedEvent;
16 import dwt.custom.StyledTextEvent; 18 import dwt.custom.StyledTextEvent;
17 19
18 /** 20 /**
29 public int lineOffset; 31 public int lineOffset;
30 32
31 /** 33 /**
32 * line text (input) 34 * line text (input)
33 */ 35 */
34 public char[] lineText; 36 public String lineText;
35 37
36 /** 38 /**
37 * the current offset (input) 39 * the current offset (input)
38 */ 40 */
39 public int offset; 41 public int offset;