[gtk+] Move GtkBuildable implementation up before accessibility
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Move GtkBuildable implementation up before accessibility
- Date: Mon, 25 Jul 2011 04:47:52 +0000 (UTC)
commit 8a544d54eabb7bcb81fc50d0401c64c48eaba49e
Author: Matthias Clasen <mclasen redhat com>
Date: Sun Jul 24 23:04:02 2011 -0400
Move GtkBuildable implementation up before accessibility
Just code rearrangement, no other changes.
gtk/gtkiconview.c | 56 ++++++++++++++++++++++++++--------------------------
1 files changed, 28 insertions(+), 28 deletions(-)
---
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c
index 20da6a3..ed53107 100644
--- a/gtk/gtkiconview.c
+++ b/gtk/gtkiconview.c
@@ -7040,6 +7040,34 @@ gtk_icon_view_set_reorderable (GtkIconView *icon_view,
g_object_notify (G_OBJECT (icon_view), "reorderable");
}
+static gboolean
+gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable,
+ GtkBuilder *builder,
+ GObject *child,
+ const gchar *tagname,
+ GMarkupParser *parser,
+ gpointer *data)
+{
+ if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
+ tagname, parser, data))
+ return TRUE;
+
+ return _gtk_cell_layout_buildable_custom_tag_start (buildable, builder, child,
+ tagname, parser, data);
+}
+
+static void
+gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable,
+ GtkBuilder *builder,
+ GObject *child,
+ const gchar *tagname,
+ gpointer *data)
+{
+ if (!_gtk_cell_layout_buildable_custom_tag_end (buildable, builder,
+ child, tagname, data))
+ parent_buildable_iface->custom_tag_end (buildable, builder,
+ child, tagname, data);
+}
/* Accessibility Support */
@@ -9257,31 +9285,3 @@ gtk_icon_view_accessible_get_type (void)
return type;
}
-static gboolean
-gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable,
- GtkBuilder *builder,
- GObject *child,
- const gchar *tagname,
- GMarkupParser *parser,
- gpointer *data)
-{
- if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
- tagname, parser, data))
- return TRUE;
-
- return _gtk_cell_layout_buildable_custom_tag_start (buildable, builder, child,
- tagname, parser, data);
-}
-
-static void
-gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable,
- GtkBuilder *builder,
- GObject *child,
- const gchar *tagname,
- gpointer *data)
-{
- if (!_gtk_cell_layout_buildable_custom_tag_end (buildable, builder,
- child, tagname, data))
- parent_buildable_iface->custom_tag_end (buildable, builder, child, tagname,
- data);
-}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]