Quantcast
Channel: Jobs
Viewing all articles
Browse latest Browse all 18427

Error -1073741819

$
0
0
Why when I create a basic app I get this error : -1073741819 mainwindow.cpp #include "mainwindow.h" #include "ui_mainwindow.h"   MainWindow::MainWindow(QWidget *parent) :     QMainWindow(parent),     ui(new Ui::MainWindow) {     ui->setupUi(this); }   MainWindow::~MainWindow() {     delete ui; } main.cpp — #include "mainwindow.h" #include <QApplication>   int main(int argc, char *argv[]) {     QApplication a(argc, argv);     MainWindow w;     w.show();         return a.exec(); }

Viewing all articles
Browse latest Browse all 18427

Trending Articles