feat(symlinks&hardlinks): linkup copy dialog

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-02-08 14:30:45 -08:00
parent 8ba51c7900
commit 5978882378
9 changed files with 96 additions and 26 deletions

View File

@ -103,9 +103,9 @@ bool InstanceCopyPrefs::isUseHardLinksEnabled() const
return useHardLinks;
}
bool InstanceCopyPrefs::isLinkWorldsEnabled() const
bool InstanceCopyPrefs::isDontLinkSavesEnabled() const
{
return linkWorlds;
return dontLinkSaves;
}
// ======= Setters =======
@ -159,7 +159,7 @@ void InstanceCopyPrefs::enableUseHardLinks(bool b)
useHardLinks = b;
}
void InstanceCopyPrefs::enableLinkWorlds(bool b)
void InstanceCopyPrefs::enableDontLinkSaves(bool b)
{
linkWorlds = b;
dontLinkSaves = b;
}