mirror of
https://github.com/microsoft/PowerToys
synced 2025-08-30 14:07:42 +00:00
chore: fix window walker warning
This commit is contained in:
committed by
Andrey Nekrasov
parent
4e18c67ec5
commit
77e4984468
@@ -18,11 +18,15 @@ namespace WindowWalker.Components
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public delegate void OpenWindowsUpdateHandler(object sender, SearchController.SearchResultUpdateEventArgs e);
|
public delegate void OpenWindowsUpdateHandler(object sender, SearchController.SearchResultUpdateEventArgs e);
|
||||||
|
|
||||||
|
#pragma warning disable 0067 // suppress false positive
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event raised when there is an update to the list of open windows
|
/// Event raised when there is an update to the list of open windows
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event OpenWindowsUpdateHandler OnOpenWindowsUpdate;
|
public event OpenWindowsUpdateHandler OnOpenWindowsUpdate;
|
||||||
|
|
||||||
|
#pragma warning restore 0067
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// List of all the open windows
|
/// List of all the open windows
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Reference in New Issue
Block a user