mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-25 15:54:31 +01:00
Rename snake_case functions in OpenRCT2/util folder
This commit is contained in:
@@ -293,7 +293,7 @@ bool CustomListView::SortItem(size_t indexA, size_t indexB, int32_t column)
|
||||
{
|
||||
const auto& cellA = Items[indexA].Cells[column];
|
||||
const auto& cellB = Items[indexB].Cells[column];
|
||||
return strlogicalcmp(cellA.c_str(), cellB.c_str()) < 0;
|
||||
return StrLogicalCmp(cellA.c_str(), cellB.c_str()) < 0;
|
||||
}
|
||||
|
||||
void CustomListView::SortItems(int32_t column)
|
||||
|
||||
Reference in New Issue
Block a user