欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Qt报错:error: no matching function for call to ‘MainWindow::connect(QAction*&, void (QAction::*)

程序员文章站 2022-03-30 22:37:52
...

Qt编译时报错:

error: no matching function for call to 'MainWindow::connect(QAction*&, void (QAction::*)(bool), MainWindow* const, MainWindow::MainWindow(QWidget*)::__lambda0)'});

报错原因:Qt软件版本过低,低于Qt5.4。

解决方案:在.pro文件中加入代码:

CONFIG   += C++11

问题解决。