summaryrefslogtreecommitdiffstats
path: root/src/magiclabel.cpp
diff options
context:
space:
mode:
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", "");
}