diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:32:37 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:32:37 -0600 |
commit | 3227a6694d1fa7e0a6e290d5b65c96428eca39d1 (patch) | |
tree | 59ff331c2387ab2c52e0f54eb663ed6f50d61079 /src/magiclabel.cpp | |
parent | a6617dd36aadab336910eed6fb4ad609507297db (diff) | |
download | ksplash-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.cpp | 4 |
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", ""); } |