summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/second_widget.cpp
blob: 65ba9627c5383cc4594039bee8818d21430c810c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include "second_widget.h"
#include "ui_second_widget.h"

SecondWidget::SecondWidget(QWidget *parent)
  : QWidget(parent), ui(new Ui::SecondWidget)
{
  ui->setupUi(this);
}

SecondWidget::~SecondWidget()
{
  delete ui;
}