mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Remove superfluous QString::fromUtf8()
This commit is contained in:
parent
4927d26877
commit
27090f0cfb
8 changed files with 13 additions and 13 deletions
|
@ -799,7 +799,7 @@ void PropertiesWidget::askWebSeed()
|
|||
// Ask user for a new url seed
|
||||
const QString url_seed = AutoExpandableDialog::getText(this, tr("New URL seed", "New HTTP source"),
|
||||
tr("New URL seed:"), QLineEdit::Normal,
|
||||
QString::fromUtf8("http://www."), &ok);
|
||||
QLatin1String("http://www."), &ok);
|
||||
if (!ok) return;
|
||||
qDebug("Adding %s web seed", qUtf8Printable(url_seed));
|
||||
if (!m_ui->listWebSeeds->findItems(url_seed, Qt::MatchFixedString).empty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue