summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-11-27 22:52:12 +0000
committerterkhen <terkhen@openttd.org>2010-11-27 22:52:12 +0000
commit75f86a7a21c6c6ea2e5067a5eb9a8690d8584ed1 (patch)
tree9795c8c24286ea191df003631d9cc6af4c30e2bd /src/vehicle_gui.cpp
parent4b944cb13e6d75662a9246bf06523a320d814ace (diff)
downloadopenttd-75f86a7a21c6c6ea2e5067a5eb9a8690d8584ed1.tar.xz
(svn r21344) -Feature [FS#4214]: Natural sorting of strings using ICU.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 46a4f1b8f..34eb67d4b 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -766,7 +766,7 @@ static int CDECL VehicleNameSorter(const Vehicle * const *a, const Vehicle * con
GetString(last_name[1], STR_VEHICLE_NAME, lastof(last_name[1]));
}
- int r = strcmp(last_name[0], last_name[1]);
+ int r = strnatcmp(last_name[0], last_name[1]); // Sort by name (natural sorting).
return (r != 0) ? r : VehicleNumberSorter(a, b);
}