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/widgets/Sash.d

    r152 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.Sash; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    157159    auto window = OS.GTK_WIDGET_WINDOW (parent.paintHandle()); 
    158160    if (window is null) return; 
    159     char [] bits = cast(char[])[ cast(byte)-86, 85, -86, 85, -86, 85, -86, 85 ]; 
     161    char [] bits = cast(String)[ cast(byte)-86, 85, -86, 85, -86, 85, -86, 85 ]; 
    160162    auto stipplePixmap = OS.gdk_bitmap_create_from_data (cast(GdkDrawable*)window, bits.ptr, 8, 8); 
    161163    auto gc = OS.gdk_gc_new (window);