summaryrefslogtreecommitdiff
path: root/tests/designer/gotoslot_withoutProject/reference_form.cpp
blob: fc313de17820cdbead708d2dbd88c16a393ddbab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright header

#include "form.h"
#include "ui_form.h"

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

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


void Form::on_pushButton_clicked()
{
    
}