Fixed sorting rules for file and url lists.

This commit is contained in:
Ianos Gnatiuc
2007-01-10 20:22:24 +00:00
parent 460db4b451
commit 52e08f890e
2 changed files with 3 additions and 2 deletions

View File

@@ -700,7 +700,7 @@ void ExternUtilMenu(GMsg* msg)
static bool PeekURLCmp(const std::string &a, const std::string b)
{
return stricmp(a.c_str(), b.c_str()) > 0;
return stricmp(a.c_str(), b.c_str()) < 0;
}