SOLVED: error: C1083: Cannot open include file: 'QtApplication': No such file or directory
-
Can you post code of you .pro file and the class where you include QApplication ?
Also try to include QApplication and not QtApplication.To display statements from code properly please use the coding tags '@@'
-
I'm still trying to learn how this forum form works also, so bear with me!
The .pro file has this coding...
@
QT += widgetsTEMPLATE = app
SOURCES = main.cpp
FORMS = gotocelldialog.ui
@The main.cpp has this coding...
@
#include <QtApplication>
#include <QtDialog>#include "ui_gotocelldialog.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);Ui::GoToCellDialog ui; QDialog *dialog = new QDialog; ui.setupUi(dialog); dialog->show(); return app.exec();
}
@Hope that is the right use of @@. Trying to locate specific directions for use on here is a little tedious to say the least.
-
As i said earlier you must include <QApplication> instead of <QtApplication> in your main.cpp.
No need to paste the form file. You have used the Code tags properly now. -
You got it right about the code tags. Also if you think your problem is solved you can edit the thread title and prepend [solved] so that others understand that the thread is solved.
-
After the problem was resolved last night thanks to p3c0, I got to thinking. Was the cause due to a "Type-o" in the book, or is Qt 5.3 using new, libraries or changed names of files for the newest version?
I've looked through the documentation on this site and haven't found anything that addresses that question.
-
It should be a typo.
I just download the examples from "here":http://www.informit.com/content/images/9780132354165/examples/qt-book-examples.zip and referring to the chap02>gotocell1>main.cpp i see there's no <QtApplication> but <QApplication>
But since Qt5 widgets is a separate module and thus you need to include
@
QT += widgets
@in your application. And probably those examples had been coded as per Qt4.
To get Qt5 port for these examples you can refer this "github":https://github.com/mutse/qt5-book-code link.