mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 02:10:28 +08:00
17 lines
362 B
C++
17 lines
362 B
C++
#include "ConnectionSettingsWidget.hpp"
|
|
|
|
ConnectionSettingsWidget::ConnectionSettingsWidget(QWidget *parent) : QWidget(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
void ConnectionSettingsWidget::changeEvent(QEvent *e)
|
|
{
|
|
QWidget::changeEvent(e);
|
|
switch (e->type())
|
|
{
|
|
case QEvent::LanguageChange: retranslateUi(this); break;
|
|
default: break;
|
|
}
|
|
}
|