diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 16:29:19 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:27:25 +0900 |
| commit | 63c914762d82f7b08215d1828bbb6d01a0d1e52d (patch) | |
| tree | a94476d4115a542ab33d0a5935e0a1260ceb7526 /src/autotraceformats.cpp | |
| parent | 91a23eaed45f300d6dc5f3eec30f74e7d6e132e3 (diff) | |
| download | potracegui-63c91476.tar.gz potracegui-63c91476.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5a58a5716ead754c1f334fab9cbdbc45eca26e0d)
Diffstat (limited to 'src/autotraceformats.cpp')
| -rw-r--r-- | src/autotraceformats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/autotraceformats.cpp b/src/autotraceformats.cpp index 893002a..354a47f 100644 --- a/src/autotraceformats.cpp +++ b/src/autotraceformats.cpp @@ -29,8 +29,8 @@ AutotraceFormats::AutotraceFormats(TQObject *parent, const char *name): TQObject outputProcess->addArgument("autotrace"); outputProcess->addArgument("--list-output-formats"); - connect(inputProcess,TQT_SIGNAL(readyReadStderr()),this,TQT_SLOT(inputRead())); - connect(outputProcess,TQT_SIGNAL(readyReadStderr()),this,TQT_SLOT(outputRead())); + connect(inputProcess,TQ_SIGNAL(readyReadStderr()),this,TQ_SLOT(inputRead())); + connect(outputProcess,TQ_SIGNAL(readyReadStderr()),this,TQ_SLOT(outputRead())); if(!(inputProcess->start()) || !(outputProcess->start())) { allOK=false; |
