Rename PluginInterface::DoFormIDsOverlap()

The use of FormIDs doesn't apply to Morrowind and it's really the
records that are significant - FormIDs are an implementation detail.
This also aligns with other use of records in names.
This commit is contained in:
Oliver Hamlet
2023-01-06 22:20:34 +00:00
parent 2c976f8848
commit fbc503a363
6 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ public:
* Morrowind, which doesn't have FormIDs and so has other identifying
* data compared.
*/
virtual bool DoFormIDsOverlap(const PluginInterface& plugin) const = 0;
virtual bool DoRecordsOverlap(const PluginInterface& plugin) const = 0;
};
}