Skip to content

Commit

Permalink
Changed EventHandlerEx<T> (Theraot) to EventHandle<T>.
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Oct 3, 2019
1 parent 830177d commit 1f725bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Windows.Shell/ShellExtensions/MessageLoop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class MessageLoop
public MessageLoop() => curThreadId = GetCurrentThreadId();

/// <summary>Occurs when a new message is available.</summary>
public event EventHandlerEx<MessageEventArgs> ProcessMessage;
public event EventHandler<MessageEventArgs> ProcessMessage;

/// <summary>Gets a value indicating whether this <see cref="MessageLoop"/> is running.</summary>
/// <value><see langword="true"/> if running; otherwise, <see langword="false"/>.</value>
Expand Down

0 comments on commit 1f725bb

Please sign in to comment.