| 371 | } |
| 372 | |
| 373 | static void |
| 374 | connectProcessSlots(ProgressTaskInfo* task, |
| 375 | ProcessHandler* process) |
| 376 | { |
| 377 | QObject::connect( task, SIGNAL(taskCanceled()), process, SLOT(onProcessCanceled()) ); |
| 378 | QObject::connect( process, SIGNAL(processCanceled()), task, SLOT(onProcessCanceled()) ); |
| 379 | QObject::connect( process, SIGNAL(frameRendered(int,double)), task, SLOT(onRenderEngineFrameComputed(int,double)) ); |
| 380 | QObject::connect( process, SIGNAL(processFinished(int)), task, SLOT(onRenderEngineStopped(int)) ); |
| 381 | } |
| 382 | |
| 383 | void |
| 384 | ProgressPanel::onTaskRestarted(const NodePtr& node, |
no outgoing calls
no test coverage detected