Changeset 480 for trunk/src/atk/EditableText.d
- Timestamp:
- 03/25/08 18:16:02 (8 months ago)
- Files:
-
- trunk/src/atk/EditableText.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/atk/EditableText.d
r428 r480 47 47 * module aliases: 48 48 * local aliases: 49 * overrides: 49 50 */ 50 51 … … 127 128 * string = string to set for text contents of text 128 129 */ 129 public void setTextContents( char[]string)130 public void setTextContents(string string) 130 131 { 131 132 // void atk_editable_text_set_text_contents (AtkEditableText *text, const gchar *string); … … 142 143 * points at the position after the newly inserted text. 143 144 */ 144 public void insertText( char[]string, int length, int* position)145 public void insertText(string string, int length, int* position) 145 146 { 146 147 // void atk_editable_text_insert_text (AtkEditableText *text, const gchar *string, gint length, gint *position);
