comparison: src/widgets/colorinput.cpp
src/widgets/colorinput.cpp
- changeset 96
- 165777a20dc7
equal
deleted
inserted
replaced
| |
1 #include "colorinput.h" |
| |
2 #include "ui_colorinput.h" |
| |
3 |
| |
4 ColorInput::ColorInput(QWidget *parent) : |
| |
5 QWidget(parent), |
| |
6 ui(new Ui::ColorInput) |
| |
7 { |
| |
8 ui->setupUi(this); |
| |
9 } |
| |
10 |
| |
11 ColorInput::~ColorInput() |
| |
12 { |
| |
13 delete ui; |
| |
14 } |