mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-06 14:17:53 -05:00
17 lines
336 B
C++
17 lines
336 B
C++
#include "OpenRGBLIFXSettingsEntry.h"
|
|
#include "ui_OpenRGBLIFXSettingsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBLIFXSettingsEntry::OpenRGBLIFXSettingsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBLIFXSettingsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBLIFXSettingsEntry::~OpenRGBLIFXSettingsEntry()
|
|
{
|
|
delete ui;
|
|
}
|