You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
305 B

#include "ethernetsettings.h"
#include "ui_ethernetsettings.h"
EthernetSettings::EthernetSettings(QString title, QWidget *parent) :
QDialog(parent),
ui(new Ui::EthernetSettings)
{
ui->setupUi(this);
this->setWindowTitle(title);
}
EthernetSettings::~EthernetSettings()
{
delete ui;
}