comparison trunk/src/docgen/sourcelisting/latexwriter.d @ 717:cb8edb09108a

Updated docgen (mostly) to new tango. Reflective options. Updated translations.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Fri, 01 Feb 2008 15:05:56 +0200
parents 33a4cb255fcc
children
comparison
equal deleted inserted replaced
716:08e6174a2e1c 717:cb8edb09108a
24 void generateListing(InputStream input, OutputStream output, char[] moduleName) { 24 void generateListing(InputStream input, OutputStream output, char[] moduleName) {
25 output.copy(input); 25 output.copy(input);
26 26
27 writer.addListing( 27 writer.addListing(
28 moduleName, 28 moduleName,
29 FilePath((cast(Object)output.conduit).toUtf8()).file 29 FilePath((cast(Object)output.conduit).toString()).file
30 ); 30 );
31 } 31 }
32 } 32 }