| 377 | */ |
| 378 | template <typename Fn> |
| 379 | void ObjectInvoke(QObject* object, Fn&& function, Qt::ConnectionType connection = Qt::QueuedConnection) |
| 380 | { |
| 381 | QObject source; |
| 382 | QObject::connect(&source, &QObject::destroyed, object, std::forward<Fn>(function), connection); |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * Replaces a plain text link with an HTML tagged one. |
no outgoing calls
no test coverage detected