logic: Show error updates during custom command indexing

* fixed code view showing all locations when switching view mode while showing errors
This commit is contained in:
Eberhard Graether
2018-12-17 00:27:16 +01:00
parent dd4a880ec3
commit 797bf2fee5
6 changed files with 35 additions and 10 deletions
@@ -11,6 +11,7 @@
class DialogView;
class IndexerCommandProvider;
class PersistentStorage;
class TaskExecuteCustomCommands
: public Task
@@ -19,6 +20,7 @@ class TaskExecuteCustomCommands
public:
TaskExecuteCustomCommands(
std::unique_ptr<IndexerCommandProvider> indexerCommandProvider,
std::shared_ptr<PersistentStorage> storage,
std::shared_ptr<DialogView> dialogView,
const FilePath& projectDirectory);
@@ -31,6 +33,7 @@ private:
void handleMessage(MessageIndexingInterrupted* message) override;
std::unique_ptr<IndexerCommandProvider> m_indexerCommandProvider;
std::shared_ptr<PersistentStorage> m_storage;
std::shared_ptr<DialogView> m_dialogView;
const FilePath m_projectDirectory;