src/widgets/colorinput.cpp@94b0a30a1886
src/widgets/colorinput.cpp
Wed, 22 Jun 2022 20:10:57 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Wed, 22 Jun 2022 20:10:57 +0300
- changeset 251
- 94b0a30a1886
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Add object editor into main
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}