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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user