mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 19:55:46 +00:00
configuration: fix mingw-w64 build
This commit is contained in:
parent
9826ea72b2
commit
66bc5a27ba
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ ConfigureNetwork::ConfigureNetwork(QWidget* parent)
|
|||
#endif
|
||||
|
||||
ui->network_interface->addItem(tr("None"));
|
||||
for (const auto& interface : Network::GetAvailableNetworkInterfaces()) {
|
||||
ui->network_interface->addItem(QString::fromStdString(interface.name));
|
||||
for (const auto& iface : Network::GetAvailableNetworkInterfaces()) {
|
||||
ui->network_interface->addItem(QString::fromStdString(iface.name));
|
||||
}
|
||||
|
||||
connect(ui->bcat_source, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue