summaryrefslogtreecommitdiff
path: root/src/industry_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/industry_gui.cpp
parent4b944cb13e6d75662a9246bf06523a320d814ace (diff)
downloadopenttd-75f86a7a21c6c6ea2e5067a5eb9a8690d8584ed1.tar.xz
(svn r21344) -Feature [FS#4214]: Natural sorting of strings using ICU.
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index 32ffff33a..f365c060a 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -120,7 +120,7 @@ static int CDECL IndustryTypeNameSorter(const IndustryType *a, const IndustryTyp
SetDParam(0, indsp2->name);
GetString(industry_name[1], STR_JUST_STRING, lastof(industry_name[1]));
- int r = strcmp(industry_name[0], industry_name[1]);
+ int r = strnatcmp(industry_name[0], industry_name[1]); // Sort by name (natural sorting).
/* If the names are equal, sort by industry type. */
return (r != 0) ? r : (*a - *b);
@@ -1137,7 +1137,7 @@ protected:
GetString(buf_cache, STR_INDUSTRY_NAME, lastof(buf_cache));
}
- return strcmp(buf, buf_cache);
+ return strnatcmp(buf, buf_cache); // Sort by name (natural sorting).
}
/** Sort industries by type and name */