~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to tests/designer/gotoslot_insertIntoCorrectClass_pointer/form.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright header
 
2
 
 
3
#include "form.h"
 
4
#include "ui_form.h"
 
5
 
 
6
Form::Form(QWidget *parent) :
 
7
    QWidget(parent),
 
8
    ui(new Ui::Form)
 
9
{
 
10
    ui->setupUi(this);
 
11
}
 
12
 
 
13
Form::~Form()
 
14
{
 
15
    delete ui;
 
16
}