mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
parent
d19f4c2e1f
commit
2deb7eb3d9
2 changed files with 4 additions and 8 deletions
|
@ -45,8 +45,7 @@ const int ARTICLEDATALIST_TYPEID = qRegisterMetaType<QVector<QVariantHash>>();
|
||||||
|
|
||||||
void RSS::Private::FeedSerializer::load(const Path &dataFileName, const QString &url)
|
void RSS::Private::FeedSerializer::load(const Path &dataFileName, const QString &url)
|
||||||
{
|
{
|
||||||
const int fileMaxSize = 10 * 1024 * 1024;
|
const auto readResult = Utils::IO::readFile(dataFileName, -1);
|
||||||
const auto readResult = Utils::IO::readFile(dataFileName, fileMaxSize);
|
|
||||||
if (!readResult)
|
if (!readResult)
|
||||||
{
|
{
|
||||||
if (readResult.error().status == Utils::IO::ReadError::NotExist)
|
if (readResult.error().status == Utils::IO::ReadError::NotExist)
|
||||||
|
|
|
@ -76,22 +76,19 @@ AboutDialog::AboutDialog(QWidget *parent)
|
||||||
m_ui->labelMascot->setPixmap(Utils::Gui::scaledPixmap(Path(u":/icons/mascot.png"_s)));
|
m_ui->labelMascot->setPixmap(Utils::Gui::scaledPixmap(Path(u":/icons/mascot.png"_s)));
|
||||||
|
|
||||||
// Thanks
|
// Thanks
|
||||||
if (const auto readResult = Utils::IO::readFile(Path(u":/thanks.html"_s), -1, QIODevice::Text)
|
if (const auto readResult = Utils::IO::readFile(Path(u":/thanks.html"_s), -1, QIODevice::Text))
|
||||||
; readResult)
|
|
||||||
{
|
{
|
||||||
m_ui->textBrowserThanks->setHtml(QString::fromUtf8(readResult.value()));
|
m_ui->textBrowserThanks->setHtml(QString::fromUtf8(readResult.value()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Translation
|
// Translation
|
||||||
if (const auto readResult = Utils::IO::readFile(Path(u":/translators.html"_s), -1, QIODevice::Text)
|
if (const auto readResult = Utils::IO::readFile(Path(u":/translators.html"_s), -1, QIODevice::Text))
|
||||||
; readResult)
|
|
||||||
{
|
{
|
||||||
m_ui->textBrowserTranslation->setHtml(QString::fromUtf8(readResult.value()));
|
m_ui->textBrowserTranslation->setHtml(QString::fromUtf8(readResult.value()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// License
|
// License
|
||||||
if (const auto readResult = Utils::IO::readFile(Path(u":/gpl.html"_s), -1, QIODevice::Text)
|
if (const auto readResult = Utils::IO::readFile(Path(u":/gpl.html"_s), -1, QIODevice::Text))
|
||||||
; readResult)
|
|
||||||
{
|
{
|
||||||
m_ui->textBrowserLicense->setHtml(QString::fromUtf8(readResult.value()));
|
m_ui->textBrowserLicense->setHtml(QString::fromUtf8(readResult.value()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue