Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrotter committed Dec 13, 2023
1 parent 9c7f550 commit af04c93
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -505,10 +505,10 @@ void TextBrowserViewer::downloadNextNeededResource() {
QMetaObject::invokeMethod(m_resourceDownloader,
"manipulateData",
Qt::ConnectionType::QueuedConnection,
qApp->web()->unescapeHtml(res.toString()),
QNetworkAccessManager::Operation::GetOperation,
QByteArray(),
5000);
Q_ARG(QString, qApp->web()->unescapeHtml(res.toString())),
Q_ARG(QNetworkAccessManager::Operation, QNetworkAccessManager::Operation::GetOperation),
Q_ARG(QByteArray, {}),
Q_ARG(int, 5000));

/*
m_resourceDownloader.data()->manipulateData(qApp->web()->unescapeHtml(res.toString()),
Expand Down

0 comments on commit af04c93

Please sign in to comment.