1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +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

@@ -188,7 +188,7 @@ public:
{
_wasVerbose = true;
if (!String::IsNullOrEmpty(text))
if (!String::isNullOrEmpty(text))
{
LOG_VERBOSE("[%s] Info (%d): %s", _identifier.c_str(), code, text);
}
@@ -198,7 +198,7 @@ public:
{
_wasWarning = true;
if (!String::IsNullOrEmpty(text))
if (!String::isNullOrEmpty(text))
{
Console::Error::WriteLine("[%s] Warning (%d): %s", _identifier.c_str(), code, text);
}
@@ -208,7 +208,7 @@ public:
{
_wasError = true;
if (!String::IsNullOrEmpty(text))
if (!String::isNullOrEmpty(text))
{
Console::Error::WriteLine("[%s] Error (%d): %s", _identifier.c_str(), code, text);
}