Bug 797185 - Correct the sorting for the Transaction Association Dialog

Change the sort function to use the correct model column.
pull/488/head
Robert Fewell 7 years ago
parent d44e0ee750
commit 19bbeaa67a

@ -100,8 +100,8 @@ sort_iter_compare_func (GtkTreeModel *model,
gint ret = 0;
gchar *uri1, *uri2;
gtk_tree_model_get (model, a, URI, &uri1, -1);
gtk_tree_model_get (model, b, URI, &uri2, -1);
gtk_tree_model_get (model, a, URI_U, &uri1, -1);
gtk_tree_model_get (model, b, URI_U, &uri2, -1);
ret = g_utf8_collate (uri1, uri2);

Loading…
Cancel
Save