wrapping up everything minus var renaming (#5952)

This commit is contained in:
Clint Rutkas
2020-08-14 09:22:24 -07:00
committed by GitHub
parent 913615f1c2
commit 5c1713f274
13 changed files with 37 additions and 34 deletions

View File

@@ -25,15 +25,15 @@ namespace PowerLauncher.ViewModel
{
get
{
return this._command;
return _command;
}
set
{
// ICommand does not implement the INotifyPropertyChanged interface and must call OnPropertyChanged() to prevent memory leaks
if (value != this._command)
if (value != _command)
{
this._command = value;
_command = value;
OnPropertyChanged();
}
}