src/widgets/colorinput.cpp@30204975694a
src/widgets/colorinput.cpp
Mon, 16 May 2022 01:40:49 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Mon, 16 May 2022 01:40:49 +0300
- changeset 187
- 30204975694a
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
work on circle tool
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}