diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:34:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:34:02 -0600 |
commit | 96842585886a67c6ab4e2cf83bc69e6156ee2c11 (patch) | |
tree | 525102d4e6980878fb2f3ae6ea448a6425c015fc /kaudiocreator/encoder.cpp | |
parent | 58284d8f7334ed4da083d197b854e73edf8b294b (diff) | |
download | tdemultimedia-96842585886a67c6ab4e2cf83bc69e6156ee2c11.tar.gz tdemultimedia-96842585886a67c6ab4e2cf83bc69e6156ee2c11.zip |
Rename additional global TQt functions
Diffstat (limited to 'kaudiocreator/encoder.cpp')
-rw-r--r-- | kaudiocreator/encoder.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaudiocreator/encoder.cpp b/kaudiocreator/encoder.cpp index 1d5e533d..cd4b93ea 100644 --- a/kaudiocreator/encoder.cpp +++ b/kaudiocreator/encoder.cpp @@ -252,12 +252,12 @@ void Encoder::receivedThreadOutput(KProcess *process, char *buffer, int length ) reportCount++; return; } - //qDebug(TQString("Pre cropped: %1").arg(output).latin1()); + //tqDebug(TQString("Pre cropped: %1").arg(output).latin1()); output = output.mid(output.find('%')-loadEncoder(job->encoder)->percentLength(),2); - //qDebug(TQString("Post cropped: %1").arg(output).latin1()); + //tqDebug(TQString("Post cropped: %1").arg(output).latin1()); bool conversionSuccessfull = false; int percent = output.toInt(&conversionSuccessfull); - //qDebug(TQString("number: %1").arg(percent).latin1()); + //tqDebug(TQString("number: %1").arg(percent).latin1()); if ( percent >= 0 && percent < 100 && conversionSuccessfull ) { emit(updateProgress(job->id, percent)); } @@ -276,7 +276,7 @@ void Encoder::jobDone(KProcess *process ) { if ( !process) return; - //qDebug("Process exited with status: %d", process->exitStatus()); + //tqDebug("Process exited with status: %d", process->exitStatus()); Job *job = jobs[(KShellProcess*)process]; threads.remove((KShellProcess*)process); @@ -296,7 +296,7 @@ void Encoder::jobDone(KProcess *process ) { } } else{ - //qDebug("Must be done: %d", (process->exitStatus())); + //tqDebug("Must be done: %d", (process->exitStatus())); emit(updateProgress(job->id, 100)); KNotifyClient::event("track encoded"); if ( job->lastSongInAlbum) |