Changeset 110:cfd5fa2ce475

Show
Ignore:
Timestamp:
07/06/08 12:53:29 (5 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Fix: be prepared for deprecated tango.io.File ctor.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • examples/addressbook/AddressBook.d

    r82 r110  
    318318    char[][] data; 
    319319    try { 
    320         scope ioFile = new File (file); 
     320        scope ioFile = new File (file.toString); 
    321321        data = TextUtil.splitLines (cast(char[]) ioFile.read); 
    322322    } catch (IOException e ) {