1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Port from deprecated QListWidget::setItemHidden() > QListWidgetItem::setHidden()

Signed-off-by: Juraj Oravec <sgd.orava@gmail.com>
This commit is contained in:
Juraj Oravec 2019-12-31 12:15:40 +01:00
parent 6c56304aed
commit 168f61c602
No known key found for this signature in database
GPG Key ID: 63ACB65056BC8D07

View File

@ -50,7 +50,7 @@ BookmarksImportDialog::BookmarksImportDialog(QWidget* parent)
connect(ui->cancelButton, &QDialogButtonBox::rejected, this, &QWidget::close); connect(ui->cancelButton, &QDialogButtonBox::rejected, this, &QWidget::close);
#ifndef Q_OS_WIN #ifndef Q_OS_WIN
ui->browserList->setItemHidden(ui->browserList->item(IE), true); ui->browserList->item(IE)->setHidden(true);
#endif #endif
} }