Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/graphics/Device.d

    r216 r238  
    7070    //GLogFunc logCallback; 
    7171    //NOT DONE - get list of valid names 
    72     char[] [] log_domains = ["GLib-GObject"[], "GLib", "GObject", "Pango", "ATK", "GdkPixbuf", "Gdk", "Gtk", "GnomeVFS"]; 
     72    String [] log_domains = ["GLib-GObject"[], "GLib", "GObject", "Pango", "ATK", "GdkPixbuf", "Gdk", "Gtk", "GnomeVFS"]; 
    7373    int [] handler_ids;// = new int [log_domains.length]; 
    7474    int warningLevel; 
     
    406406 * </ul> 
    407407 */ 
    408 public FontData[] getFontList (char[] faceName, bool scalable) { 
     408public FontData[] getFontList (String faceName, bool scalable) { 
    409409    checkDevice (); 
    410410    if (!scalable) return new FontData[0]; 
     
    674674 * @since 3.3 
    675675 */ 
    676 public bool loadFont (char[] path) { 
     676public bool loadFont (String path) { 
    677677    checkDevice(); 
    678678    if (path is null) DWT.error (DWT.ERROR_NULL_ARGUMENT);