diff options
author | Alexander Larsson <alexl@redhat.com> | 2020-01-28 15:03:42 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2020-01-30 10:53:33 +0100 |
commit | 6a15e9169d018a18fdaa481287d5facfd2b142f1 (patch) | |
tree | 9017548b2eed00d6ee3862562aae8c68140f77d3 /gtk/gtkmenusectionbox.c | |
parent | 6af4b6a644bb8ad29088cf5dc37dbe426a005937 (diff) | |
download | gtk+-6a15e9169d018a18fdaa481287d5facfd2b142f1.tar.gz |
Rename GtkIcon widget to GtkBuiltinIcon
This is an internal widget whose name is not very important, and we
want to rename GtkIconInfo to GtkIcon, so lets rename this.
Diffstat (limited to 'gtk/gtkmenusectionbox.c')
-rw-r--r-- | gtk/gtkmenusectionbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkmenusectionbox.c b/gtk/gtkmenusectionbox.c index eee0659e0e..fd462230de 100644 --- a/gtk/gtkmenusectionbox.c +++ b/gtk/gtkmenusectionbox.c @@ -32,7 +32,7 @@ #include "gtkstylecontext.h" #include "gtkpopovermenuprivate.h" #include "gtkorientable.h" -#include "gtkiconprivate.h" +#include "gtkbuiltiniconprivate.h" typedef GtkBoxClass GtkMenuSectionBoxClass; @@ -582,7 +582,7 @@ gtk_menu_section_box_new_section (GtkMenuTrackerItem *item, gtk_orientable_set_orientation (GTK_ORIENTABLE (box->item_box), GTK_ORIENTATION_HORIZONTAL); gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (box->item_box)), "inline-buttons"); - spacer = gtk_icon_new ("none"); + spacer = gtk_builtin_icon_new ("none"); gtk_container_add (GTK_CONTAINER (box->item_box), spacer); gtk_size_group_add_widget (box->indicators, spacer); |