src/widgets/colorinput.cpp@6bcb284679d4
src/widgets/colorinput.cpp
Wed, 25 May 2022 17:56:30 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Wed, 25 May 2022 17:56:30 +0300
- changeset 196
- 6bcb284679d4
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
delete unneeded things
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}