QObject connect:无法对“QItemSelection”类型的参数进行排队

时间:2013-05-10 02:11:44

标签: qt signals-slots

我在时间23:59:59传递到第二天时收到以下消息。    我不知道(因为代码是由其他人编写的)它来自哪里。    有谁能建议如何找出问题?    谢谢!

QObject::connect: Cannot queue arguments of type 'QItemSelection'
(Make sure 'QItemSelection' is registered using qRegisterMetaType().)
QObject::connect: Cannot queue arguments of type 'QItemSelection'
(Make sure 'QItemSelection' is registered using qRegisterMetaType().)
QObject::connect: Cannot queue arguments of type 'QItemSelection'
(Make sure 'QItemSelection' is registered using qRegisterMetaType().)

1 个答案:

答案 0 :(得分:5)

在名称空间外使用以下内容:

Q_DECLARE_METATYPE(namespace::QItemSelection)

Documentation