comparison src/console/Audacious_Driver.cxx @ 1510:3a252050736c

replace tuple_formatter_process_string() with tuple_formatter_make_title_string() except that for streamings.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Tue, 21 Aug 2007 17:11:59 +0900
parents 799f92d815b2
children f49d1284079a d158ce84fda7
comparison
equal deleted inserted replaced
1509:3b3fe8afc42e 1510:3a252050736c
238 return ti; 238 return ti;
239 } 239 }
240 240
241 static char* format_and_free_ti( Tuple* ti, int* length ) 241 static char* format_and_free_ti( Tuple* ti, int* length )
242 { 242 {
243 char* result = tuple_formatter_process_string(ti, get_gentitle_format()); 243 char* result = tuple_formatter_make_title_string(ti, get_gentitle_format());
244 if ( result ) 244 if ( result )
245 *length = tuple_get_int(ti, "length"); 245 *length = tuple_get_int(ti, "length");
246 tuple_free((void *) ti); 246 tuple_free((void *) ti);
247 247
248 return result; 248 return result;