[gtk+] a11y: Split out a function
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] a11y: Split out a function
- Date: Wed, 26 Feb 2014 01:40:40 +0000 (UTC)
commit 5ea4dbf3e06a2d5003b2351eff3607c7a64169ce
Author: Benjamin Otte <otte redhat com>
Date: Mon Feb 24 18:02:41 2014 +0100
a11y: Split out a function
This will make the next refactoring easier.
gtk/a11y/gtktreeviewaccessible.c | 21 +++++++++++++++------
1 files changed, 15 insertions(+), 6 deletions(-)
---
diff --git a/gtk/a11y/gtktreeviewaccessible.c b/gtk/a11y/gtktreeviewaccessible.c
index 81f55ea..80312da 100644
--- a/gtk/a11y/gtktreeviewaccessible.c
+++ b/gtk/a11y/gtktreeviewaccessible.c
@@ -360,11 +360,24 @@ peek_cell (GtkTreeViewAccessible *accessible,
}
static GtkCellAccessible *
+create_cell_accessible_for_renderer (GtkCellRenderer *renderer,
+ GtkWidget *widget,
+ AtkObject *parent)
+{
+ GtkCellAccessible *cell;
+
+ cell = GTK_CELL_ACCESSIBLE (gtk_renderer_cell_accessible_new (renderer));
+
+ _gtk_cell_accessible_initialize (cell, widget, parent);
+
+ return cell;
+}
+
+static GtkCellAccessible *
create_cell_accessible (GtkTreeView *treeview,
GtkTreeViewAccessible *accessible,
GtkTreeViewColumn *column)
{
- GtkCellRenderer *renderer;
AtkObject *parent;
GtkContainerCellAccessible *container = NULL;
GList *renderer_list;
@@ -390,11 +403,7 @@ create_cell_accessible (GtkTreeView *treeview,
for (l = renderer_list; l; l = l->next)
{
- renderer = GTK_CELL_RENDERER (l->data);
-
- cell = GTK_CELL_ACCESSIBLE (gtk_renderer_cell_accessible_new (renderer));
- _gtk_cell_accessible_initialize (cell, GTK_WIDGET (treeview), parent);
-
+ cell = create_cell_accessible_for_renderer (l->data, GTK_WIDGET (treeview), parent);
if (container)
gtk_container_cell_accessible_add_child (container, cell);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]