Tue, 28 Jun 2022 11:51:17 +0300
- Add CMake build type to about page and window title
- Use locale-dependant short date format in window title and long format in about page
- Move version definition into project() call
- Renamed the c++ macros to match CMake variable names
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 | } |