diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:52:23 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:52:23 -0600 |
commit | 92994ee2036ac7c4c68747f67dbc0ecbaf4c250c (patch) | |
tree | a7b8d21bab293fe30c6f1db1daa9544469fb5f37 /kttsd/plugins/hadifix/hadifixproc.cpp | |
parent | 6687cd2515bdebbd8f0c92261f3acf8777441ca6 (diff) | |
download | tdeaccessibility-92994ee2036ac7c4c68747f67dbc0ecbaf4c250c.tar.gz tdeaccessibility-92994ee2036ac7c4c68747f67dbc0ecbaf4c250c.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kttsd/plugins/hadifix/hadifixproc.cpp')
-rw-r--r-- | kttsd/plugins/hadifix/hadifixproc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kttsd/plugins/hadifix/hadifixproc.cpp b/kttsd/plugins/hadifix/hadifixproc.cpp index 9f6a5d6..d7a7514 100644 --- a/kttsd/plugins/hadifix/hadifixproc.cpp +++ b/kttsd/plugins/hadifix/hadifixproc.cpp @@ -184,9 +184,9 @@ void HadifixProc::synth(TQString text, TQString mbrolaCommand = d->hadifixProc->quote(mbrola); mbrolaCommand += " -e"; //Ignore fatal errors on unkown diphone - mbrolaCommand += TQString(" -v %1").tqarg(volume/100.0); // volume ratio - mbrolaCommand += TQString(" -f %1").tqarg(pitch/100.0); // freqency ratio - mbrolaCommand += TQString(" -t %1").tqarg(1/(time/100.0)); // time ratio + mbrolaCommand += TQString(" -v %1").arg(volume/100.0); // volume ratio + mbrolaCommand += TQString(" -f %1").arg(pitch/100.0); // freqency ratio + mbrolaCommand += TQString(" -t %1").arg(1/(time/100.0)); // time ratio mbrolaCommand += " " + d->hadifixProc->quote(voice); mbrolaCommand += " - " + d->hadifixProc->quote(waveFilename); |