mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 04:24:23 +00:00
Don't forget to delete TorrentContentAdaptor instance
PR #19825. Closes #19816.
This commit is contained in:
parent
a689ccf798
commit
e7f38ec6ce
@ -549,7 +549,7 @@ void AddNewTorrentDialog::contentLayoutChanged()
|
|||||||
|
|
||||||
const auto contentLayout = static_cast<BitTorrent::TorrentContentLayout>(m_ui->contentLayoutComboBox->currentIndex());
|
const auto contentLayout = static_cast<BitTorrent::TorrentContentLayout>(m_ui->contentLayoutComboBox->currentIndex());
|
||||||
m_contentAdaptor->applyContentLayout(contentLayout);
|
m_contentAdaptor->applyContentLayout(contentLayout);
|
||||||
m_ui->contentTreeView->setContentHandler(m_contentAdaptor); // to cause reloading
|
m_ui->contentTreeView->setContentHandler(m_contentAdaptor.get()); // to cause reloading
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddNewTorrentDialog::saveTorrentFile()
|
void AddNewTorrentDialog::saveTorrentFile()
|
||||||
@ -775,7 +775,7 @@ void AddNewTorrentDialog::setupTreeview()
|
|||||||
if (m_torrentParams.filePaths.isEmpty())
|
if (m_torrentParams.filePaths.isEmpty())
|
||||||
m_torrentParams.filePaths = torrentInfo.filePaths();
|
m_torrentParams.filePaths = torrentInfo.filePaths();
|
||||||
|
|
||||||
m_contentAdaptor = new TorrentContentAdaptor(torrentInfo, m_torrentParams.filePaths, m_torrentParams.filePriorities);
|
m_contentAdaptor = std::make_unique<TorrentContentAdaptor>(torrentInfo, m_torrentParams.filePaths, m_torrentParams.filePriorities);
|
||||||
|
|
||||||
const auto contentLayout = static_cast<BitTorrent::TorrentContentLayout>(m_ui->contentLayoutComboBox->currentIndex());
|
const auto contentLayout = static_cast<BitTorrent::TorrentContentLayout>(m_ui->contentLayoutComboBox->currentIndex());
|
||||||
m_contentAdaptor->applyContentLayout(contentLayout);
|
m_contentAdaptor->applyContentLayout(contentLayout);
|
||||||
@ -796,7 +796,7 @@ void AddNewTorrentDialog::setupTreeview()
|
|||||||
m_contentAdaptor->prioritizeFiles(priorities);
|
m_contentAdaptor->prioritizeFiles(priorities);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_ui->contentTreeView->setContentHandler(m_contentAdaptor);
|
m_ui->contentTreeView->setContentHandler(m_contentAdaptor.get());
|
||||||
|
|
||||||
m_filterLine->blockSignals(false);
|
m_filterLine->blockSignals(false);
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "base/bittorrent/addtorrentparams.h"
|
#include "base/bittorrent/addtorrentparams.h"
|
||||||
@ -85,7 +87,7 @@ private:
|
|||||||
void showEvent(QShowEvent *event) override;
|
void showEvent(QShowEvent *event) override;
|
||||||
|
|
||||||
Ui::AddNewTorrentDialog *m_ui = nullptr;
|
Ui::AddNewTorrentDialog *m_ui = nullptr;
|
||||||
TorrentContentAdaptor *m_contentAdaptor = nullptr;
|
std::unique_ptr<TorrentContentAdaptor> m_contentAdaptor;
|
||||||
BitTorrent::TorrentDescriptor m_torrentDescr;
|
BitTorrent::TorrentDescriptor m_torrentDescr;
|
||||||
BitTorrent::AddTorrentParams m_torrentParams;
|
BitTorrent::AddTorrentParams m_torrentParams;
|
||||||
int m_savePathIndex = -1;
|
int m_savePathIndex = -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user