logic: Fixed indexing progress file count in status bar and status view (issue #387)

bug id = 387
This commit is contained in:
Eberhard Graether
2017-05-19 14:26:52 +02:00
parent 9088de8105
commit 65b5bd47f6
7 changed files with 19 additions and 10 deletions
+2 -1
View File
@@ -36,7 +36,8 @@ public:
virtual DialogView::IndexingOptions startIndexingDialog(
size_t cleanFileCount, size_t indexFileCount, size_t totalFileCount, DialogView::IndexingOptions options) override;
virtual void updateIndexingDialog(size_t fileCount, size_t totalFileCount, std::string sourcePath) override;
virtual void updateIndexingDialog(
size_t startedFileCount, size_t finishedFileCount, size_t totalFileCount, std::string sourcePath) override;
virtual void finishedIndexingDialog(
size_t indexedFileCount, size_t totalIndexedFileCount, size_t completedFileCount, size_t totalFileCount,
float time, ErrorCountInfo errorInfo, bool interrupted) override;