diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:42:37 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:22:08 +0900 | 
| commit | f3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd (patch) | |
| tree | 49b5284de3c34fa5beb84bd52110e7e1cdba826d /src/tools/list/compile_manager.cpp | |
| parent | 26bcb362b66b78984c0c7567d00c12f3425d6468 (diff) | |
| download | piklab-f3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd.tar.gz piklab-f3f67ab73137aa1ce1bc14753cc0e09a1b44f9bd.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c679361a50aee162491e7195f2bcfdbbf341dde5)
Diffstat (limited to 'src/tools/list/compile_manager.cpp')
| -rw-r--r-- | src/tools/list/compile_manager.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/tools/list/compile_manager.cpp b/src/tools/list/compile_manager.cpp index 28f7aa6..edf999c 100644 --- a/src/tools/list/compile_manager.cpp +++ b/src/tools/list/compile_manager.cpp @@ -39,7 +39,7 @@ bool Compile::Manager::setupFile(Operations op, const TodoItem &item)    _todo.append(item);    _action = Compiling;    _wholeProject = false; -  TQTimer::singleShot(0, this, TQT_SLOT(start())); +  TQTimer::singleShot(0, this, TQ_SLOT(start()));    return true;  } @@ -74,7 +74,7 @@ bool Compile::Manager::setupProject(Operations op, LinkType type)    }    _action = Compiling;    _wholeProject = true; -  TQTimer::singleShot(0, this, TQT_SLOT(start())); +  TQTimer::singleShot(0, this, TQ_SLOT(start()));    return true;  } @@ -216,7 +216,7 @@ void Compile::Manager::start()    }    if ( _operations & Clean ) {      _base->files(0).onlyExistingFiles().cleanGenerated(); -    TQTimer::singleShot(0, this, TQT_SLOT(start())); +    TQTimer::singleShot(0, this, TQ_SLOT(start()));      return;    }    if ( !_base->start() ) { @@ -249,7 +249,7 @@ void Compile::Manager::processDone()      FileData::List list = _base->files(0).onlyExistingFiles();      FileData::List::iterator it;      for (it=list.begin(); it!=list.end(); ++it) emit updateFile(*it); -    TQTimer::singleShot(0, this, TQT_SLOT(start())); +    TQTimer::singleShot(0, this, TQ_SLOT(start()));    }  } | 
