src/dialogs/cylindereditor.cpp

changeset 1391
5fa4bf1fc781
child 1395
23551de3da36
equal deleted inserted replaced
1390:3eace926af7f 1391:5fa4bf1fc781
1 #include "cylindereditor.h"
2 #include "ui_cylindereditor.h"
3
4 CylinderEditor::CylinderEditor(QWidget *parent) :
5 QDialog(parent),
6 ui(new Ui::CylinderEditor)
7 {
8 ui->setupUi(this);
9 }
10
11 CylinderEditor::~CylinderEditor()
12 {
13 delete ui;
14 }

mercurial