| 647 | } |
| 648 | |
| 649 | QString ImportFileWidget::host() const { |
| 650 | const auto t = ui.leHost->text(); |
| 651 | if (t.compare(QStringLiteral("localhost"), Qt::CaseSensitivity::CaseInsensitive) == 0) |
| 652 | return QStringLiteral("127.0.0.1"); |
| 653 | return t; |
| 654 | } |
| 655 | |
| 656 | QString ImportFileWidget::port() const { |
| 657 | return ui.lePort->text(); |
no test coverage detected