diff -r 06a1aef170aa -r 165777a20dc7 src/widgets/colorinput.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/widgets/colorinput.cpp Sun Jan 10 15:28:44 2021 +0200 @@ -0,0 +1,14 @@ +#include "colorinput.h" +#include "ui_colorinput.h" + +ColorInput::ColorInput(QWidget *parent) : + QWidget(parent), + ui(new Ui::ColorInput) +{ + ui->setupUi(this); +} + +ColorInput::~ColorInput() +{ + delete ui; +}