Clean qt_sink code

This commit is contained in:
gabime 2023-06-07 00:21:44 +03:00
parent 5384512f25
commit 0f50ad92d6

View File

@ -34,8 +34,7 @@ public:
{
// store the meta method object for later usage
qt_object_ = qt_object;
const QMetaObject *metaobject = qt_object_->metaObject();
qt_object_->dumpObjectInfo();
auto *metaobject = qt_object_->metaObject();
int methodIndex = metaobject->indexOfMethod(meta_method_name.c_str());
if (methodIndex == -1) {
throw_spdlog_ex("qt_sink: qt_object does not have meta_method " + meta_method_name);