src/dialogs/cylindereditor.cpp@d2bf2e59a3ef
src/dialogs/cylindereditor.cpp
Sun, 17 Jun 2018 14:06:03 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 17 Jun 2018 14:06:03 +0300
- changeset 1405
- d2bf2e59a3ef
- parent 1395
-
23551de3da36
- permissions
- -rw-r--r--
replaced overloads with a new 'xyz' function
#include "cylindereditor.h"
#include "ui_cylindereditor.h"
CylinderEditor::CylinderEditor(QWidget* parent) :
QDialog {parent},
ui {*new Ui_CylinderEditor}
{
ui.setupUi(this);
}
CylinderEditor::~CylinderEditor()
{
delete &ui;
}