mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 19:30:11 +01:00
Make sorting case-insensitive
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2112 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
206fdfe894
commit
413dd1dc1b
1 changed files with 1 additions and 1 deletions
|
|
@ -892,7 +892,7 @@ vpn_list_sorter(GtkTreeModel *model,
|
|||
gtk_tree_model_get_value(model, b, VPNCONN_NAME_COLUMN, &bval);
|
||||
aname = g_value_get_string(&aval);
|
||||
bname = g_value_get_string(&bval);
|
||||
res = strcmp(aname, bname);
|
||||
res = strcasecmp(aname, bname);
|
||||
g_value_unset(&aval);
|
||||
g_value_unset(&bval);
|
||||
return res;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue