Show
Ignore:
Timestamp:
02/06/08 12:46:23 (1 year ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

FileDialog?, sync dwthelper with dwt-linux, some TCHAR issues

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/InputStream.d

    r0 r84  
    1919            int c = read(); 
    2020            if( c == -1 ){ 
    21                 return idx; 
     21                return ( idx == 0 ) ? -1 : idx; 
    2222            } 
    2323            b[ idx] = cast(byte)( c & 0xFF );