src/widgets/colorinput.cpp@37f936073cac
src/widgets/colorinput.cpp
Sun, 24 Oct 2021 11:33:32 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 24 Oct 2021 11:33:32 +0300
- changeset 147
- 37f936073cac
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
update
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}