diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:09:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:09:01 -0600 |
commit | 445633c8ffa0b5219c036b130230fdc6d97e9894 (patch) | |
tree | 1316fddd885f0ee259dcf646bafc5464c588204b /libk9copy/k9burndvd.cpp | |
parent | a372f822fe1b3fad682bf6796cb62da4f13a31db (diff) | |
download | k9copy-445633c8ffa0b5219c036b130230fdc6d97e9894.tar.gz k9copy-445633c8ffa0b5219c036b130230fdc6d97e9894.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'libk9copy/k9burndvd.cpp')
-rw-r--r-- | libk9copy/k9burndvd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libk9copy/k9burndvd.cpp b/libk9copy/k9burndvd.cpp index b9114de..7a53968 100644 --- a/libk9copy/k9burndvd.cpp +++ b/libk9copy/k9burndvd.cpp @@ -101,13 +101,13 @@ void k9BurnDVD::burnWithK3b() { } void k9BurnDVD::mkisoSizeStderr(KProcess *proc, char *buffer, int buflen) { - TQString c=TQString::tqfromLatin1( buffer,buflen);// (proc2->readStderr()); + TQString c=TQString::fromLatin1( buffer,buflen);// (proc2->readStderr()); imageSize=c.replace("\n",""); ; } void k9BurnDVD::mkisoSizeStdout(KProcess *proc, char *buffer, int buflen) { - TQString c=TQString::tqfromLatin1(buffer,buflen);// (proc2->readStdout()); + TQString c=TQString::fromLatin1(buffer,buflen);// (proc2->readStdout()); imageSize=c.replace("\n",""); ; } @@ -331,7 +331,7 @@ void k9BurnDVD::burnWithGrowisofs() { /** No descriptions */ void k9BurnDVD::growisoStderr(KProcess *proc, char *buffer, int buflen) { - TQString c=TQString::tqfromLatin1( buffer,buflen);// (proc->readStderr()); + TQString c=TQString::fromLatin1( buffer,buflen);// (proc->readStderr()); char s[255]; int a,b; int pos; @@ -371,7 +371,7 @@ void k9BurnDVD::growisoStderr(KProcess *proc, char *buffer, int buflen) { } } void k9BurnDVD::growisoStdout(KProcess *proc, char *buffer, int buflen) { - TQString c=TQString::tqfromLatin1( buffer,buflen);// (proc->readStdout()); + TQString c=TQString::fromLatin1( buffer,buflen);// (proc->readStdout()); int pos; pos=c.find("STAT"); if (pos!=-1) { |