AutoUpdater: Correct type on stub processUpdate()

This commit is contained in:
TheLastRar 2024-05-22 01:24:29 +01:00 committed by Connor McLaughlin
parent 4fe5064b8c
commit 19d5d5c485
1 changed files with 1 additions and 1 deletions

View File

@ -897,7 +897,7 @@ void AutoUpdaterDialog::cleanupAfterUpdate()
#else
bool AutoUpdaterDialog::processUpdate(const QByteArray& update_data, QProgressDialog& progress)
bool AutoUpdaterDialog::processUpdate(const std::vector<u8>& data, QProgressDialog& progress)
{
return false;
}