Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/accessibility/Accessible.d

    r134 r212  
    632632 
    633633        /* Get the default defaultAction from the OS. */ 
    634         char[] osDefaultAction = null; 
     634        String osDefaultAction = null; 
    635635        int code = iaccessible.get_accDefaultAction(variant, pszDefaultAction); 
    636636        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID 
     
    660660 
    661661        /* Get the default description from the OS. */ 
    662         char[] osDescription = null; 
     662        String osDescription = null; 
    663663        int code = iaccessible.get_accDescription(variant, pszDescription); 
    664664        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID 
     
    770770 
    771771        /* Get the default help string from the OS. */ 
    772         char[] osHelp = null; 
     772        String osHelp = null; 
    773773        int code = iaccessible.get_accHelp(variant, pszHelp); 
    774774        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID 
     
    807807 
    808808        /* Get the default keyboard shortcut from the OS. */ 
    809         char[] osKeyboardShortcut = null; 
     809        String osKeyboardShortcut = null; 
    810810        int code = iaccessible.get_accKeyboardShortcut(variant, pszKeyboardShortcut); 
    811811        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID 
     
    836836 
    837837        /* Get the default name from the OS. */ 
    838         char[] osName = null; 
     838        String osName = null; 
    839839        int code = iaccessible.get_accName(variant, pszName); 
    840840        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID 
     
    10371037 
    10381038        /* Get the default value string from the OS. */ 
    1039         char[] osValue = null; 
     1039        String osValue = null; 
    10401040        int code = iaccessible.get_accValue(variant, pszValue); 
    10411041        if (code is COM.E_INVALIDARG) code = COM.S_FALSE; // proxy doesn't know about app childID