comparison: src/dialogs/cylindereditor.cpp
src/dialogs/cylindereditor.cpp
- changeset 1406
- 37fffb682d2f
- parent 1405
- d2bf2e59a3ef
- child 1407
- 22bc5862cb56
equal
deleted
inserted
replaced
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 } |
|