We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8a771 commit ea8bac8Copy full SHA for ea8bac8
src/LogExpert/Controls/LogWindow/LogWindowEventHandlers.cs
@@ -32,20 +32,17 @@ private void AutoResizeFilterBox()
32
33
protected void OnProgressBarUpdate(ProgressEventArgs e)
34
{
35
- ProgressBarEventHandler handler = ProgressBarUpdate;
36
- handler?.Invoke(this, e);
+ ProgressBarUpdate?.Invoke(this, e);
37
}
38
39
protected void OnStatusLine(StatusLineEventArgs e)
40
41
- StatusLineEventHandler handler = StatusLineEvent;
42
+ StatusLineEvent?.Invoke(this, e);
43
44
45
protected void OnGuiState(GuiStateArgs e)
46
47
- GuiStateEventHandler handler = GuiStateUpdate;
48
+ GuiStateUpdate?.Invoke(this, e);
49
50
51
protected void OnTailFollowed(EventArgs e)
0 commit comments