File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
RetailCoder.VBE/Inspections Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 6
6
using System . Threading . Tasks ;
7
7
using Rubberduck . Parsing . VBA ;
8
8
using Rubberduck . Settings ;
9
+ using Rubberduck . UI ;
9
10
10
11
namespace Rubberduck . Inspections
11
12
{
@@ -54,6 +55,7 @@ public async Task<IList<ICodeInspectionResult>> FindIssuesAsync(RubberduckParser
54
55
55
56
await Task . Yield ( ) ;
56
57
58
+ state . OnStatusMessageUpdate ( RubberduckUI . CodeInspections_Inspecting ) ;
57
59
UpdateInspectionSeverity ( ) ;
58
60
//OnReset();
59
61
@@ -84,6 +86,7 @@ public async Task<IList<ICodeInspectionResult>> FindIssuesAsync(RubberduckParser
84
86
}
85
87
86
88
Task . WaitAll ( inspections ) ;
89
+ state . OnStatusMessageUpdate ( RubberduckUI . ResourceManager . GetString ( "ParserState_" + state . Status ) ) ; // should be "Ready"
87
90
88
91
return allIssues . ToList ( ) ;
89
92
}
You can’t perform that action at this time.
0 commit comments