QFutureInterface: port to new SlotObjUniquePtr

... removing a ### comments to that effect.

Pick-to: 6.6
Change-Id: I635ca9593ec72a66d328ff6de61cd311c1b4e89f
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
This commit is contained in:
Marc Mutz 2023-07-17 07:03:38 +02:00
parent c58074b42d
commit 56651915e8

View File

@ -118,11 +118,7 @@ void QtPrivate::watchContinuationImpl(const QObject *context, QSlotObjectBase *s
Q_ASSERT(context);
Q_ASSERT(slotObj);
// ### we're missing `QSlotObjectPtr`...
struct Deleter {
void operator()(QSlotObjectBase *p) const { p->destroyIfLastRef(); }
};
auto slot = std::unique_ptr<QSlotObjectBase, Deleter>(slotObj);
auto slot = SlotObjUniquePtr(slotObj);
auto *watcher = new QBasicFutureWatcher;
watcher->moveToThread(context->thread());