gui: IPCPreviewWorker(): Don't allocate mapfunctor on heap

Este commit está contenido en:
Albert S. 2022-05-29 10:40:46 +02:00
padre f8fe21d50b
commit c867652b6f
Se han modificado 1 ficheros con 3 adiciones y 5 borrados

Ver fichero

@ -10,13 +10,11 @@ IPCPreviewWorker::IPCPreviewWorker()
void IPCPreviewWorker::start(RenderConfig config, const QVector<RenderTarget> &targets, QLocalSocket *peer)
{
stop();
/* TODO: memleak */
auto mapFunctor = new PreviewGeneratorMapFunctor();
mapFunctor->setRenderConfig(config);
auto mapFunctor = PreviewGeneratorMapFunctor();
mapFunctor.setRenderConfig(config);
previewWorkerWatcher.setFuture(QtConcurrent::mapped(targets, *mapFunctor));
previewWorkerWatcher.setFuture(QtConcurrent::mapped(targets, mapFunctor));
}
void IPCPreviewWorker::stop()