Changeset 238:380bad9f6852 for dwt/internal/accessibility/gtk/ATK.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/internal/accessibility/gtk/ATK.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/accessibility/gtk/ATK.d
r108 r238 16 16 *******************************************************************************/ 17 17 module dwt.internal.accessibility.gtk.ATK; 18 19 import dwt.dwthelper.utils; 18 20 19 21 … … 64 66 // Note: highly dependent on the .stringof formatting 65 67 // the value begins with "& " which is why the first two chars are cut off 66 const char[]NameOfFunc = (&f).stringof[2 .. $];68 const String NameOfFunc = (&f).stringof[2 .. $]; 67 69 } 68 70 … … 78 80 /+ 79 81 // alternative template implementation, might be more stable 80 template ForwardGtkOsCFunc( char[]name) {82 template ForwardGtkOsCFunc(String name) { 81 83 alias typeof(mixin(name)) func; 82 84 alias ParameterTupleOf!(func) Params; … … 146 148 147 149 /** Signals */ 148 public static const char[]selection_changed = "selection_changed";149 public static const char[]text_changed_insert = "text_changed::insert";150 public static const char[]text_changed_delete = "text_changed::delete";151 public static const char[]text_caret_moved = "text_caret_moved";152 public static const char[]text_selection_changed = "text_selection_changed";150 public static const String selection_changed = "selection_changed"; 151 public static const String text_changed_insert = "text_changed::insert"; 152 public static const String text_changed_delete = "text_changed::delete"; 153 public static const String text_caret_moved = "text_caret_moved"; 154 public static const String text_selection_changed = "text_selection_changed"; 153 155 154 156 mixin ForwardGtkAtkCFunc!(.ATK_ACTION_GET_IFACE );
