src/widgets/colorinput.cpp@7c834fe36b25
src/widgets/colorinput.cpp
Sun, 12 Sep 2021 12:14:32 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 12 Sep 2021 12:14:32 +0300
- changeset 128
- 7c834fe36b25
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Moved automatic grid adjusting into a new action
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}