| 9 | namespace { |
| 10 | |
| 11 | QString interfaceLabel(const QNetworkInterface& iface) |
| 12 | { |
| 13 | const QString human = iface.humanReadableName().trimmed(); |
| 14 | if (!human.isEmpty()) |
| 15 | return human; |
| 16 | return iface.name().trimmed(); |
| 17 | } |
| 18 | |
| 19 | } |
| 20 |
no test coverage detected