Rename Copy function to CopyInto

This commit is contained in:
Terry MacDonald 2020-12-07 21:08:34 +13:00
parent 02485e6de3
commit a7aa06f3e0
2 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ namespace DisplayMagician.GameLibraries
}
}
public bool CopyTo(SteamGame steamGame)
public bool CopyInto(SteamGame steamGame)
{
if (!(steamGame is SteamGame))
return false;

View File

@ -131,7 +131,7 @@ namespace DisplayMagician.GameLibraries
{
// We update the existing Shortcut with the data over
SteamGame steamGameToUpdate = GetSteamGame(steamGame.Id.ToString());
steamGame.CopyTo(steamGameToUpdate);
steamGame.CopyInto(steamGameToUpdate);
}
else
{