mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 20:27:52 -05:00
24 lines
524 B
C++
24 lines
524 B
C++
#include "OpenRGBPhilipsHueSettingsEntry.h"
|
|
#include "ui_OpenRGBPhilipsHueSettingsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBPhilipsHueSettingsEntry::OpenRGBPhilipsHueSettingsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBPhilipsHueSettingsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBPhilipsHueSettingsEntry::~OpenRGBPhilipsHueSettingsEntry()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void Ui::OpenRGBPhilipsHueSettingsEntry::on_UnpairButton_clicked()
|
|
{
|
|
ui->UsernameValue->setText("");
|
|
ui->ClientKeyValue->setText("");
|
|
}
|
|
|