1. 程式人生 > >【原創】<Debug> QT頭文件

【原創】<Debug> QT頭文件

5.1 col ike microsoft bug AI stat sta .com

【Error】 No such file or directory

【Solution】

參考: http://blog.csdn.net/donglynn/article/details/21804505

1、pro文件裏,QT += core gui 改為 QT += core gui widgets

2..h文件裏,#include <QtGui/QApplication>改為#include <QApplication>

【Error】 ‘QMessageBox‘ has not been declared

【solution】

加入頭文件 #include<QTGui>,QMessageBox類才可以用

【Error】‘QtGui/QMainWindow‘: No such file or directory : Qt 5.1.1

參考:網易博客 http://shitou7630.blog.163.com/blog/static/3269953620159311350611/

【Solution】

在pro文件中添加 widgets

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

By adding this line in .pro file, Now you just no need to worry about Qt version and include file like <QtGui/QMainWindow> or <QtWidgets/QMainWindow>

【原創】<Debug> QT頭文件