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/internal/cairo/Cairo.d

    r108 r238  
    2323 */ 
    2424module dwt.internal.cairo.Cairo; 
     25 
     26import dwt.dwthelper.utils; 
    2527 
    2628import  dwt.internal.c.cairo; 
     
    6264    // Note: highly dependent on the .stringof formatting 
    6365    // the value begins with "& " which is why the first two chars are cut off 
    64     const char[] NameOfFunc = (&f).stringof[2 .. $]; 
     66    const String NameOfFunc = (&f).stringof[2 .. $]; 
    6567} 
    6668