diff options
Diffstat (limited to 'src/optionsdetailed.cpp')
-rwxr-xr-x | src/optionsdetailed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/optionsdetailed.cpp b/src/optionsdetailed.cpp index f959600..efb5af9 100755 --- a/src/optionsdetailed.cpp +++ b/src/optionsdetailed.cpp @@ -675,7 +675,7 @@ void OptionsDetailed::qualityChanged() // t_int = ( (100 - item->fileListItem->options.encodingOptions.iQuality) * (int)( plugin->enc.lossy.quality.range_min - plugin->enc.lossy.quality.range_max ) / 100) + (int)plugin->enc.lossy.quality.range_max; quality.replace( "%q", TQString::number( ( (100 - qualityLevel) * (int)( plugin->enc.lossy.quality.range_min - plugin->enc.lossy.quality.range_max ) / 100) + (int)plugin->enc.lossy.quality.range_max ) ); } - if( plugin->enc.bin == "oggenc" ) quality.replace(TQChar('.'),KGlobal::locale()->decimalSymbol()); // HACK make oggenc usable with all langauges + if( plugin->enc.bin == "oggenc" ) quality.replace(TQChar('.'),TDEGlobal::locale()->decimalSymbol()); // HACK make oggenc usable with all langauges else if( plugin->enc.lossy.quality.separator != '.' ) { quality.replace( TQChar('.'), plugin->enc.lossy.quality.separator ); } |