summaryrefslogtreecommitdiffstats
path: root/mountconfig/SimpleCommandRunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'mountconfig/SimpleCommandRunner.py')
-rw-r--r--mountconfig/SimpleCommandRunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mountconfig/SimpleCommandRunner.py b/mountconfig/SimpleCommandRunner.py
index 9936ba1..0b9d941 100644
--- a/mountconfig/SimpleCommandRunner.py
+++ b/mountconfig/SimpleCommandRunner.py
@@ -46,8 +46,8 @@ class SimpleCommandRunner(TQObject):
proc = TDEProcess()
proc.setEnvironment("LANG","US")
proc.setEnvironment("LC_ALL","US")
- self.connect(proc,SIGNAL("receivedStdout(TDEProcess *,char *,int)"),self.slotStdout)
- self.connect(proc,SIGNAL("receivedStderr(TDEProcess *,char *,int)"),self.slotStderr)
+ self.connect(proc,TQ_SIGNAL("receivedStdout(TDEProcess *,char *,int)"),self.slotStdout)
+ self.connect(proc,TQ_SIGNAL("receivedStderr(TDEProcess *,char *,int)"),self.slotStderr)
proc.setArguments(cmdlist)
rc = None
if proc.start(proc.Block,proc.AllOutput)==True: