Changeset 238:380bad9f6852 for dwt/graphics/Device.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/Device.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Device.d
r216 r238 70 70 //GLogFunc logCallback; 71 71 //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"]; 73 73 int [] handler_ids;// = new int [log_domains.length]; 74 74 int warningLevel; … … 406 406 * </ul> 407 407 */ 408 public FontData[] getFontList ( char[]faceName, bool scalable) {408 public FontData[] getFontList (String faceName, bool scalable) { 409 409 checkDevice (); 410 410 if (!scalable) return new FontData[0]; … … 674 674 * @since 3.3 675 675 */ 676 public bool loadFont ( char[]path) {676 public bool loadFont (String path) { 677 677 checkDevice(); 678 678 if (path is null) DWT.error (DWT.ERROR_NULL_ARGUMENT);
