diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:17 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:17 -0600 |
commit | 955e20356d63ed405198c8143617a8a0ca8bfc02 (patch) | |
tree | 9a9ab22c86d212a5655014ad752e96b04c0c86a9 /kfloppy/zip.cpp | |
parent | bf280726d5d22f33d33e4f9e771220c725249407 (diff) | |
download | tdeutils-955e20356d63ed405198c8143617a8a0ca8bfc02.tar.gz tdeutils-955e20356d63ed405198c8143617a8a0ca8bfc02.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit bf280726d5d22f33d33e4f9e771220c725249407.
Diffstat (limited to 'kfloppy/zip.cpp')
-rw-r--r-- | kfloppy/zip.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kfloppy/zip.cpp b/kfloppy/zip.cpp index 672eb06..e774a8f 100644 --- a/kfloppy/zip.cpp +++ b/kfloppy/zip.cpp @@ -34,7 +34,7 @@ #include "zip.moc" #include <tqcheckbox.h> -#include <layout.h> +#include <tqlayout.h> #include <tqtimer.h> #include <tqwhatsthis.h> @@ -188,7 +188,7 @@ void ZipFormat::transition() << "if=/dev/zero" << "of=/dev/afd0c" << "bs=8192" ; - *p << TQString("count=%1").arg(totalBlocks); + *p << TQString("count=%1").tqarg(totalBlocks); if (!p->start(KProcess::NotifyOnExit,KProcess::AllOutput)) { emit statusMessage(i18n("Cannot start dd to zero disk.")); @@ -250,8 +250,8 @@ void ZipFormat::processResult(KProcess *, char *b, int l) DEBUGSETUP; #ifdef DEBUG - TQString o = TQString::fromLatin1(b,l); - DEBUGS(TQString(" %1").arg(o).latin1()); + TQString o = TQString::tqfromLatin1(b,l); + DEBUGS(TQString(" %1").tqarg(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...") - .arg(currentblock) - .arg(totalBlocks)); + .tqarg(currentblock) + .tqarg(totalBlocks)); } } break; @@ -283,7 +283,7 @@ void ZipFormat::processResult(KProcess *, char *b, int l) // emit setProgress(1); - // TQString myBuf = TQString::fromLatin1(b, l); + // TQString myBuf = TQString::tqfromLatin1(b, l); // DEBUGS(myBuf.latin1()); } break; |