diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-08-03 15:54:42 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-09-05 21:50:15 -0400 |
commit | 24389a0ef5063944aa9909a40239658c4eedb230 (patch) | |
tree | 7daba4b0cca5a7dbc9e892325815f651d4ecc88b /gtk/gtkcustomsorter.h | |
parent | dfabe74c593b876f50e56903e6c5f7f11f332781 (diff) | |
download | gtk+-24389a0ef5063944aa9909a40239658c4eedb230.tar.gz |
Make sorter constructors return exact typesfilter-constructors
Make functions like gtk_custom_sorter_new() return
the actual type they construct.
Update all callers.
Diffstat (limited to 'gtk/gtkcustomsorter.h')
-rw-r--r-- | gtk/gtkcustomsorter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcustomsorter.h b/gtk/gtkcustomsorter.h index 50cf090637..6846d01d46 100644 --- a/gtk/gtkcustomsorter.h +++ b/gtk/gtkcustomsorter.h @@ -34,7 +34,7 @@ GDK_AVAILABLE_IN_ALL G_DECLARE_FINAL_TYPE (GtkCustomSorter, gtk_custom_sorter, GTK, CUSTOM_SORTER, GtkSorter) GDK_AVAILABLE_IN_ALL -GtkSorter * gtk_custom_sorter_new (GCompareDataFunc sort_func, +GtkCustomSorter * gtk_custom_sorter_new (GCompareDataFunc sort_func, gpointer user_data, GDestroyNotify user_destroy); |