Show
Ignore:
Timestamp:
05/17/08 11:34:28 (6 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Update to SWT 3.4M7

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/internal/image/LEDataOutputStream.d

    r48 r213  
    1 /******************************************************************************* 
     1/******************************************************************************* 
    22 * Copyright (c) 2000, 2005 IBM Corporation and others. 
    33 * All rights reserved. This program and the accompanying materials 
     
    1717 
    1818final class LEDataOutputStream : OutputStream { 
     19 
    1920    alias OutputStream.write write; 
     21 
    2022    OutputStream ostr; 
     23 
    2124public this(OutputStream output) { 
    2225    this.ostr = output; 
     
    2629 * starting at the specified offset, to the output stream. 
    2730 */ 
    28 override public void write(byte b[], int off, int len) { 
     31public override void write(byte b[], int off, int len) { 
    2932    ostr.write(b, off, len); 
    3033} 
     
    3235 * Write the given byte to the output stream. 
    3336 */ 
    34 override public void write(int b)  { 
     37public override void write(int b)  { 
    3538    ostr.write(b); 
    3639}