src/widgets/colorinput.cpp@3a4b132b8353
src/widgets/colorinput.cpp
Tue, 28 Jun 2022 19:47:34 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Tue, 28 Jun 2022 19:47:34 +0300
- changeset 300
- 3a4b132b8353
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Fix build warnings, size_type of QVector changes from Qt5 to Qt6 so we need an alias for it
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}