summaryrefslogtreecommitdiffstats
path: root/kommander/widget/functionlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widget/functionlib.cpp')
-rw-r--r--kommander/widget/functionlib.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kommander/widget/functionlib.cpp b/kommander/widget/functionlib.cpp
index b75a6f2b..293d4ed9 100644
--- a/kommander/widget/functionlib.cpp
+++ b/kommander/widget/functionlib.cpp
@@ -336,7 +336,7 @@ static ParseNode f_dcop(Parser*, const ParameterList& params)
if (items.count() != params.count() - 3)
{
- qDebug("Wrong number of parameters");
+ tqDebug("Wrong number of parameters");
return ParseNode();
}
int i = 3;
@@ -367,7 +367,7 @@ static ParseNode f_dcop(Parser*, const ParameterList& params)
if (!cl || !cl->call(appId, object, function.latin1(),
byteData, replyType, byteReply))
{
- qDebug("DCOP failure");
+ tqDebug("DCOP failure");
return ParseNode();
}
TQDataStream byteReplyStream(byteReply, IO_ReadOnly);
@@ -397,7 +397,7 @@ static ParseNode f_dcop(Parser*, const ParameterList& params)
}
else if(replyType != "void")
{
- qDebug("%s", TQString("DCOP return type %1 is not yet implemented.").arg(replyType.data()).latin1());
+ tqDebug("%s", TQString("DCOP return type %1 is not yet implemented.").arg(replyType.data()).latin1());
}
return ParseNode();
@@ -463,7 +463,7 @@ static ParseNode f_exec(Parser* P, const ParameterList& params)
{
MyProcess proc(P->currentWidget());
TQString text;
-// qDebug("Trying %s", params[0].toString().latin1());
+// tqDebug("Trying %s", params[0].toString().latin1());
if (params.count() > 1)
text = proc.run(params[0].toString().local8Bit(), params[1].toString());
else
@@ -476,7 +476,7 @@ static ParseNode f_execBackground(Parser* P, const ParameterList& params)
MyProcess proc(P->currentWidget());
proc.setBlocking(false);
TQString text;
- qDebug("Trying %s", params[0].toString().latin1());
+ tqDebug("Trying %s", params[0].toString().latin1());
if (params.count() > 1)
text = proc.run(params[0].toString().local8Bit(), params[1].toString());
else