summaryrefslogtreecommitdiffstats
path: root/src/magiclabel.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:37 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:37 -0600
commit3227a6694d1fa7e0a6e290d5b65c96428eca39d1 (patch)
tree59ff331c2387ab2c52e0f54eb663ed6f50d61079 /src/magiclabel.cpp
parenta6617dd36aadab336910eed6fb4ad609507297db (diff)
downloadksplash-engine-moodin-3227a6694d1fa7e0a6e290d5b65c96428eca39d1.tar.gz
ksplash-engine-moodin-3227a6694d1fa7e0a6e290d5b65c96428eca39d1.zip
Rename a number of old tq methods that are no longer tq specific
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 5b30252..57d50c7 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").tqarg(cmd));
+ KMessageBox::information(0, TQString("Could not start process: %1").arg(cmd));
}
void MagicLabel::receivedStdout(KProcess *proc, char *buffer, int buflen)
{
- TQString buf = TQString::tqfromLatin1(buffer, buflen);
+ TQString buf = TQString::fromLatin1(buffer, buflen);
mValue += buf.replace("\n", "");
}