summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutoUicInterface/mywidget.cpp
blob: 885165bfaa380dacfedf5c610a49a4727dc84c2d (plain)
1
2
3
4
5
6
7
8
9

#include "mywidget.h"

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