diff options
author | Benjamin Otte <otte@redhat.com> | 2019-11-03 02:23:46 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-05-30 19:26:46 -0400 |
commit | 1af004361c60d43fdcc00576c0a6fd118723575e (patch) | |
tree | 543d452aea4d9d0820a93d56b40c6aa2300724e8 /gtk/gtklistitemprivate.h | |
parent | b33c56819b312aa61fc21fca566e1859c822cedf (diff) | |
download | gtk+-1af004361c60d43fdcc00576c0a6fd118723575e.tar.gz |
listitemfactory: Simplify
Instead of 6 vfuncs, we now have 3 and rely on the factory keeping track
of what it needs to do.
We're doing lots of dancing from one object to another here, but this
will hopefully get simpler with further commits.
Diffstat (limited to 'gtk/gtklistitemprivate.h')
-rw-r--r-- | gtk/gtklistitemprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklistitemprivate.h b/gtk/gtklistitemprivate.h index 5912e406be..b84057f838 100644 --- a/gtk/gtklistitemprivate.h +++ b/gtk/gtklistitemprivate.h @@ -41,7 +41,7 @@ struct _GtkListItem guint selected : 1; }; -GtkListItem * gtk_list_item_new (GtkListItemWidget *owner); +GtkListItem * gtk_list_item_new (void); void gtk_list_item_set_item (GtkListItem *self, gpointer item); |