summaryrefslogtreecommitdiffstats
path: root/mountconfig/SimpleCommandRunner.py
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:21:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:06:39 +0900
commit10f0a51a1784f390ef81bf59ab5ffc9342de3c81 (patch)
tree64318c193d1fa25b7cc58ef3999085cdaabcf1c5 /mountconfig/SimpleCommandRunner.py
parenta57f888ae0aa9153b837b2fb308003dac9666969 (diff)
downloadtde-guidance-10f0a51a.tar.gz
tde-guidance-10f0a51a.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit bde8dd4103c094d23e7a96d9754d691e385f1cac)
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: