mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
Remove compiler warnings
This commit is contained in:
@@ -62,7 +62,7 @@ namespace Wox.Helper
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
catch (Exception)
|
||||
{
|
||||
// Probably dwmapi.dll not found (incompatible OS)
|
||||
return false;
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Wox
|
||||
public partial class MainWindow
|
||||
{
|
||||
private static readonly object locker = new object();
|
||||
public static bool Initialized = false;
|
||||
public static bool initialized = false;
|
||||
|
||||
private static readonly List<Result> waitShowResultList = new List<Result>();
|
||||
private readonly GloablHotkey globalHotkey = new GloablHotkey();
|
||||
@@ -44,7 +44,7 @@ namespace Wox
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
Initialized = true;
|
||||
initialized = true;
|
||||
|
||||
|
||||
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
||||
|
||||
Reference in New Issue
Block a user