Cosmetic refactoring

This commit is contained in:
watsonb8
2020-01-18 18:07:31 -05:00
parent e796bf2f35
commit dc7879c23d
4 changed files with 33 additions and 33 deletions

View File

@ -51,7 +51,7 @@ namespace Aurora.Design.Views.Songs
#endregion Methods
#region Commmands
public override bool CanPreviousButtonExecute()
public override bool CanPreviousButtonCommandExecute()
{
return true;
}
@ -60,12 +60,12 @@ namespace Aurora.Design.Views.Songs
}
public override bool CanPlayButtonExecute()
public override bool CanPlayButtonCommandExecute()
{
return true;
}
public override void OnPlayButtonExecute()
public override void OnPlayButtonCommandExecute()
{
if (_selectedSong == null)
{
@ -82,7 +82,7 @@ namespace Aurora.Design.Views.Songs
}
public override bool CanNextButtonExecute()
public override bool CanNextButtonCommandExecute()
{
return true;
}