diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:59:52 -0600 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-04 03:15:15 +0200 |
| commit | 632b7d40cf87562965abb5c7dffc1bae509bad2c (patch) | |
| tree | 65cd81a82890e9be95bf2ad49d1174a36369ff4d /kfloppy/zip.cpp | |
| parent | 7ee38ebc22d177c8f0f4805d0e8479736ec94f79 (diff) | |
| download | tdeutils-632b7d40cf87562965abb5c7dffc1bae509bad2c.tar.gz tdeutils-632b7d40cf87562965abb5c7dffc1bae509bad2c.zip | |
Remove additional unneeded tq method conversions
(cherry picked from commit 7ea89afa119615e547323a7a482ea7fef8e67029)
Diffstat (limited to 'kfloppy/zip.cpp')
| -rw-r--r-- | kfloppy/zip.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kfloppy/zip.cpp b/kfloppy/zip.cpp index 5dae22e..51da7ef 100644 --- a/kfloppy/zip.cpp +++ b/kfloppy/zip.cpp @@ -188,7 +188,7 @@ void ZipFormat::transition() << "if=/dev/zero" << "of=/dev/afd0c" << "bs=8192" ; - *p << TQString("count=%1").tqarg(totalBlocks); + *p << TQString("count=%1").arg(totalBlocks); if (!p->start(KProcess::NotifyOnExit,KProcess::AllOutput)) { emit statusMessage(i18n("Cannot start dd to zero disk.")); @@ -251,7 +251,7 @@ void ZipFormat::processResult(KProcess *, char *b, int l) #ifdef DEBUG TQString o = TQString::fromLatin1(b,l); - DEBUGS(TQString(" %1").tqarg(o).latin1()); + DEBUGS(TQString(" %1").arg(o).latin1()); #endif switch(formatStep) @@ -264,8 +264,8 @@ void ZipFormat::processResult(KProcess *, char *b, int l) if (totalBlocks>10000) { emit statusMessage(i18n("Zeroing block %1 of %2...") - .tqarg(currentblock) - .tqarg(totalBlocks)); + .arg(currentblock) + .arg(totalBlocks)); } } break; |
