mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-04 19:04:30 +00:00
Fix unitialized scalar fields
This commit is contained in:
parent
4965704b10
commit
c6ca877b72
@ -44,6 +44,7 @@ DownloadRule::DownloadRule()
|
|||||||
: m_enabled(false)
|
: m_enabled(false)
|
||||||
, m_useRegex(false)
|
, m_useRegex(false)
|
||||||
, m_apstate(USE_GLOBAL)
|
, m_apstate(USE_GLOBAL)
|
||||||
|
, m_ignoreDays(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,6 +72,9 @@
|
|||||||
SearchWidget::SearchWidget(MainWindow *mainWindow)
|
SearchWidget::SearchWidget(MainWindow *mainWindow)
|
||||||
: QWidget(mainWindow)
|
: QWidget(mainWindow)
|
||||||
, m_mainWindow(mainWindow)
|
, m_mainWindow(mainWindow)
|
||||||
|
, m_isNewQueryString(false)
|
||||||
|
, m_noSearchResults(true)
|
||||||
|
, m_nbSearchResults(0)
|
||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user