src/widgets/colorinput.cpp@ca23936b455b
src/widgets/colorinput.cpp
Mon, 06 Jun 2022 22:01:22 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Mon, 06 Jun 2022 22:01:22 +0300
- changeset 200
- ca23936b455b
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Giant refactor
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}