shared: Indexer: Add setProgressReportThreshold()

Этот коммит содержится в:
Albert S. 2023-05-01 23:52:45 +02:00
родитель 6cd7a92576
Коммит 4604970f9d
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -171,3 +171,8 @@ void Indexer::setFileSaverOptions(FileSaverOptions options)
{
this->fileSaverOptions = options;
}
void Indexer::setProgressReportThreshold(int threshold)
{
this->progressReportThreshold = threshold;
}

Просмотреть файл

@ -82,6 +82,8 @@ class Indexer : public QObject
void setFileSaverOptions(FileSaverOptions options);
void setProgressReportThreshold(int threshold);
void requestCancellation();
Indexer(SqliteDbService &db);