mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Replace deprecated QString::null
This commit is contained in:
parent
6dab93f7fd
commit
c6ae1aa9d9
@ -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…
Reference in New Issue
Block a user