summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserentry.c
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2022-10-08 12:25:10 -0300
committerMatthias Clasen <mclasen@redhat.com>2022-10-20 22:34:40 -0400
commit44c37fa34a8b28d8bc2ce684244a964fde0dbbed (patch)
treed29e2a1b6b016352ad01191c8f0dada1ad4255b6 /gtk/gtkfilechooserentry.c
parent5c41dbfaa57ebbd3c874721243f4a20defb56e49 (diff)
downloadgtk+-44c37fa34a8b28d8bc2ce684244a964fde0dbbed.tar.gz
filesystemmodel: Drop GtkTreeSortable interface
Stop implementing this interface. We'll be able to reimplement sorting once we fully transition to GListModel.
Diffstat (limited to 'gtk/gtkfilechooserentry.c')
-rw-r--r--gtk/gtkfilechooserentry.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c
index 39f7c3dceb..3825b7da21 100644
--- a/gtk/gtkfilechooserentry.c
+++ b/gtk/gtkfilechooserentry.c
@@ -605,8 +605,6 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry)
_gtk_file_system_model_set_show_files (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
chooser_entry->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SAVE);
- gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
- DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
chooser_entry->completion_store);