init checkin (#6100)

This commit is contained in:
Clint Rutkas
2020-08-21 12:40:31 -07:00
committed by GitHub
parent 80f8c0399b
commit 83e8799610
23 changed files with 30 additions and 30 deletions

View File

@@ -30,7 +30,7 @@ namespace PowerLauncher
private readonly Alphabet _alphabet = new Alphabet();
private const string Unique = "PowerLauncher_Unique_Application_Mutex";
private static bool _disposed = false;
private static bool _disposed;
private static int _powerToysPid;
private Settings _settings;
private MainViewModel _mainVM;

View File

@@ -23,9 +23,9 @@ namespace PowerLauncher
private readonly Settings _settings;
private readonly MainViewModel _viewModel;
private bool _isTextSetProgrammatically;
private bool _deletePressed = false;
private bool _deletePressed;
private Timer _firstDeleteTimer = new Timer();
private bool _coldStateHotkeyPressed = false;
private bool _coldStateHotkeyPressed;
public MainWindow(Settings settings, MainViewModel mainVM)
: this()
@@ -314,7 +314,7 @@ namespace PowerLauncher
}
}
private bool disposedValue = false;
private bool disposedValue;
private void QueryTextBox_TextChanged(object sender, TextChangedEventArgs e)
{

View File

@@ -96,7 +96,7 @@
<PackageReference Include="Mages" Version="1.6.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

View File

@@ -23,7 +23,7 @@ namespace Wox
private readonly MainViewModel _mainVM;
private readonly Alphabet _alphabet;
private readonly ThemeManager _themeManager;
private bool _disposed = false;
private bool _disposed;
public event ThemeChangedHandler ThemeChanged;