دوستان من این خط کد رو نوشتم خطا میده ایرادش از چی:
#include <QApplication>
#include <QPushButton>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPushButton *button=new QPushButton("Quit");
QObject::connect(button,SIGNAL(clicked()),quit,SLOT(quit()));
button ->show();
return a.exec();
}
باید یک دکمه نشون بده ولی این خطا رو میده:
9: error: 'quit' was not declared in this scope