QObject::connect(pManager, SIGNAL(sglSendAllUseblePortName(std::vector)), this, SLOT(sltGetAllUseblePortName(std::vector)), Qt::QueuedConnection);
3条回答 默认 最新
qtchen_1988 2020-07-13 17:53关注connect(pManager, SIGNAL(sglSendAllUseblePortName(std::vector)), this, SLOT(sltGetAllUseblePortName(std::vector)), Qt::QueuedConnection); 改成: connect(pManager, SIGNAL(sglSendAllUseblePortName(std::vector<QString> )), this, SLOT(sltGetAllUseblePortName(std::vector<QString> )), Qt::QueuedConnection);解决 无用评论 打赏 举报