mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
[Wox.Plugin] Enable analyzer and fix warnings (#16547)
This commit is contained in:
committed by
GitHub
parent
9cf39654d9
commit
ec3ea5c4ae
@@ -801,9 +801,9 @@ namespace Wox.Plugin.Common.Win32
|
||||
return !r1.Equals(r2);
|
||||
}
|
||||
|
||||
public bool Equals(RECT r)
|
||||
public bool Equals(RECT other)
|
||||
{
|
||||
return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
|
||||
return other.Left == Left && other.Top == Top && other.Right == Right && other.Bottom == Bottom;
|
||||
}
|
||||
|
||||
public override bool Equals(object obj)
|
||||
|
||||
Reference in New Issue
Block a user