1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Rename String methods to use lowerCamelCase

This commit is contained in:
Aaron van Geffen
2024-12-11 22:28:31 +01:00
parent a24dc2e60a
commit 35e117aca2
102 changed files with 587 additions and 589 deletions

View File

@@ -65,7 +65,7 @@ int32_t ServerListEntry::CompareTo(const ServerListEntry& other) const
return a.Players > b.Players ? -1 : 1;
}
return String::Compare(a.Name, b.Name, true);
return String::compare(a.Name, b.Name, true);
}
bool ServerListEntry::IsVersionValid() const noexcept
@@ -119,7 +119,7 @@ void ServerList::Sort()
[](const ServerListEntry& a, const ServerListEntry& b) {
if (a.Favourite == b.Favourite)
{
return String::IEquals(a.Address, b.Address);
return String::iequals(a.Address, b.Address);
}
return false;
}),