[Qt]QObject::connect: Cannot queue arguments of type 'QString&'

来源:互联网 发布:淘宝联盟卖家不给佣金 编辑:程序博客网 时间:2024/06/05 07:53

it is not allowed to pass non-const value across threads.

that means you can't modify the argument 's value across threads.
★Solution: add const before argument's type
原创粉丝点击