Files
qt-creator/plugins/clangstaticanalyzer/unit-tests/qt-widgets-app/mainwindow.cpp
Nikolai Kosjar 11a7e71687 Add qt-widgets-app unit test
Change-Id: I502075f79d4abf6bd5c0d2080b2f543116499ace
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
2015-04-16 11:59:36 +03:00

15 lines
219 B
C++

#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}