src/dialogs/cylindereditor.cpp

Sun, 10 Jun 2018 16:50:14 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 10 Jun 2018 16:50:14 +0300
changeset 1398
1c70d3447d20
parent 1395
23551de3da36
permissions
-rw-r--r--

changed LDCylinder to LDCircularPrimitive and moved circles to it

#include "cylindereditor.h"
#include "ui_cylindereditor.h"

CylinderEditor::CylinderEditor(QWidget* parent) :
	QDialog {parent},
	ui {*new Ui_CylinderEditor}
{
	ui.setupUi(this);
}

CylinderEditor::~CylinderEditor()
{
	delete &ui;
}

mercurial