--- a/src/types.cpp Wed Jul 17 03:06:21 2013 +0300 +++ b/src/types.cpp Wed Jul 17 18:46:47 2013 +0300 @@ -14,8 +14,8 @@ return text; } -void doPrint( initlist<StringFormatArg> args ) { - printf( "%s", doFormat( args ).toStdString().c_str() ); +void doPrint( FILE* fp, initlist<StringFormatArg> args ) { + fprintf( fp, "%s", doFormat( args ).toStdString().c_str() ); } // =============================================================================