Changeset 212:ab60f3309436 for dwt/accessibility/Accessible.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/accessibility/Accessible.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/accessibility/Accessible.d
r134 r212 632 632 633 633 /* Get the default defaultAction from the OS. */ 634 char[]osDefaultAction = null;634 String osDefaultAction = null; 635 635 int code = iaccessible.get_accDefaultAction(variant, pszDefaultAction); 636 636 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID … … 660 660 661 661 /* Get the default description from the OS. */ 662 char[]osDescription = null;662 String osDescription = null; 663 663 int code = iaccessible.get_accDescription(variant, pszDescription); 664 664 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID … … 770 770 771 771 /* Get the default help string from the OS. */ 772 char[]osHelp = null;772 String osHelp = null; 773 773 int code = iaccessible.get_accHelp(variant, pszHelp); 774 774 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID … … 807 807 808 808 /* Get the default keyboard shortcut from the OS. */ 809 char[]osKeyboardShortcut = null;809 String osKeyboardShortcut = null; 810 810 int code = iaccessible.get_accKeyboardShortcut(variant, pszKeyboardShortcut); 811 811 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID … … 836 836 837 837 /* Get the default name from the OS. */ 838 char[]osName = null;838 String osName = null; 839 839 int code = iaccessible.get_accName(variant, pszName); 840 840 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID … … 1037 1037 1038 1038 /* Get the default value string from the OS. */ 1039 char[]osValue = null;1039 String osValue = null; 1040 1040 int code = iaccessible.get_accValue(variant, pszValue); 1041 1041 if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID
