Sun, 26 Jun 2022 20:54:09 +0300
Add action to make a model unofficial (modifies the !LDRAW_ORG line)
96 | 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 | } |