summaryrefslogtreecommitdiffstats
path: root/src/magiclabel.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:11 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:11 -0600
commita7d78d31f6988129f1e52dc986206604ae585c73 (patch)
tree37bca9540297d3b02af9f381531e7f692b78f518 /src/magiclabel.cpp
parent3227a6694d1fa7e0a6e290d5b65c96428eca39d1 (diff)
downloadksplash-engine-moodin-a7d78d31f6988129f1e52dc986206604ae585c73.tar.gz
ksplash-engine-moodin-a7d78d31f6988129f1e52dc986206604ae585c73.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 3227a6694d1fa7e0a6e290d5b65c96428eca39d1.
Diffstat (limited to 'src/magiclabel.cpp')
-rw-r--r--src/magiclabel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/magiclabel.cpp b/src/magiclabel.cpp
index 57d50c7..5b30252 100644
--- a/src/magiclabel.cpp
+++ b/src/magiclabel.cpp
@@ -73,13 +73,13 @@ void MagicLabel::getCommandOutput()
mValue = "";
if (!proc->start(KProcess::Block, KProcess::Stdout))
- KMessageBox::information(0, TQString("Could not start process: %1").arg(cmd));
+ KMessageBox::information(0, TQString("Could not start process: %1").tqarg(cmd));
}
void MagicLabel::receivedStdout(KProcess *proc, char *buffer, int buflen)
{
- TQString buf = TQString::fromLatin1(buffer, buflen);
+ TQString buf = TQString::tqfromLatin1(buffer, buflen);
mValue += buf.replace("\n", "");
}