| 221 | } |
| 222 | |
| 223 | static bool isNotifySignal(const QMetaObject *mo, const QMetaMethod &method) |
| 224 | { |
| 225 | for (int i = 0; i < mo->propertyCount(); ++i) { |
| 226 | const auto prop = mo->property(i); |
| 227 | if (!prop.hasNotifySignal()) |
| 228 | continue; |
| 229 | if (prop.notifySignal().methodIndex() == method.methodIndex()) |
| 230 | return true; |
| 231 | } |
| 232 | return false; |
| 233 | } |
| 234 | |
| 235 | Protocol::ObjectAddress Server::registerObject(const QString &name, QObject *object, |
| 236 | Server::ObjectExportOptions exportOptions) |
no test coverage detected