mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-09 00:17:38 -04:00
17 lines
357 B
C++
17 lines
357 B
C++
#include "OpenRGBQMKORGBSettingsEntry.h"
|
|
#include "ui_OpenRGBQMKORGBSettingsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBQMKORGBSettingsEntry::OpenRGBQMKORGBSettingsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBQMKORGBSettingsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBQMKORGBSettingsEntry::~OpenRGBQMKORGBSettingsEntry()
|
|
{
|
|
delete ui;
|
|
}
|