mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
Simplify null pointer check
This commit is contained in:
parent
bb73fa5dbe
commit
bf264b983a
@ -65,7 +65,7 @@ QVariant HtmlBrowser::loadResource(int type, const QUrl &name)
|
||||
url.setScheme("http");
|
||||
|
||||
QIODevice *dev = m_diskCache->data(url);
|
||||
if (dev != nullptr) {
|
||||
if (dev) {
|
||||
qDebug() << "HtmlBrowser::loadResource() cache " << url.toString();
|
||||
QByteArray res = dev->readAll();
|
||||
delete dev;
|
||||
|
@ -354,7 +354,7 @@ void TrackerFiltersList::removeItem(const QString &tracker, const QString &hash)
|
||||
updateGeometry();
|
||||
return;
|
||||
}
|
||||
if (trackerItem != nullptr)
|
||||
if (trackerItem)
|
||||
trackerItem->setText(QString("%1 (%2)").arg(host).arg(tmp.size()));
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user