mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 21:52:32 -06:00
Initialize member variables
This commit is contained in:
@@ -42,9 +42,9 @@ struct SearchResult
|
||||
{
|
||||
QString fileName;
|
||||
QString fileUrl;
|
||||
qlonglong fileSize;
|
||||
qlonglong nbSeeders;
|
||||
qlonglong nbLeechers;
|
||||
qlonglong fileSize = 0;
|
||||
qlonglong nbSeeders = 0;
|
||||
qlonglong nbLeechers = 0;
|
||||
QString siteUrl;
|
||||
QString descrLink;
|
||||
};
|
||||
|
||||
@@ -52,7 +52,7 @@ struct PluginInfo
|
||||
QString url;
|
||||
QStringList supportedCategories;
|
||||
Path iconPath;
|
||||
bool enabled;
|
||||
bool enabled = false;
|
||||
};
|
||||
|
||||
class SearchDownloadHandler;
|
||||
|
||||
Reference in New Issue
Block a user