mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
Replace deprecated QString::null
This commit is contained in:
parent
6dab93f7fd
commit
c6ae1aa9d9
1 changed files with 2 additions and 2 deletions
|
@ -199,11 +199,11 @@ void AdvancedSettings::saveAdvancedSettings()
|
||||||
// Interface address
|
// Interface address
|
||||||
if (comboBoxInterfaceAddress.currentIndex() == 0) {
|
if (comboBoxInterfaceAddress.currentIndex() == 0) {
|
||||||
// All addresses (default)
|
// All addresses (default)
|
||||||
session->setNetworkInterfaceAddress(QString::null);
|
session->setNetworkInterfaceAddress({});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
QHostAddress ifaceAddr(comboBoxInterfaceAddress.currentText().trimmed());
|
QHostAddress ifaceAddr(comboBoxInterfaceAddress.currentText().trimmed());
|
||||||
ifaceAddr.isNull() ? session->setNetworkInterfaceAddress(QString::null) : session->setNetworkInterfaceAddress(ifaceAddr.toString());
|
ifaceAddr.isNull() ? session->setNetworkInterfaceAddress({}) : session->setNetworkInterfaceAddress(ifaceAddr.toString());
|
||||||
}
|
}
|
||||||
session->setIPv6Enabled(checkBoxListenIPv6.isChecked());
|
session->setIPv6Enabled(checkBoxListenIPv6.isChecked());
|
||||||
// Announce IP
|
// Announce IP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue