src/dialogs/cylindereditor.cpp

Sun, 10 Jun 2018 12:12:50 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 10 Jun 2018 12:12:50 +0300
changeset 1395
23551de3da36
parent 1391
5fa4bf1fc781
permissions
-rw-r--r--

separated the color button into a new widget

#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