[gtk+] Small code rearrangement
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Small code rearrangement
- Date: Sat, 4 Oct 2014 15:57:50 +0000 (UTC)
commit 051eedcea19521cfd0ef8e6a3225d30872028538
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Oct 4 11:43:50 2014 -0400
Small code rearrangement
gtk/inspector/widget-tree.c | 14 +++++---------
1 files changed, 5 insertions(+), 9 deletions(-)
---
diff --git a/gtk/inspector/widget-tree.c b/gtk/inspector/widget-tree.c
index 507513f..290c9f6 100644
--- a/gtk/inspector/widget-tree.c
+++ b/gtk/inspector/widget-tree.c
@@ -364,10 +364,15 @@ gtk_inspector_widget_tree_append_object (GtkInspectorWidgetTree *wt,
if (GTK_IS_COMBO_BOX (object))
{
GtkWidget *popup;
+ GObject *child;
popup = gtk_combo_box_get_popup (GTK_COMBO_BOX (object));
if (popup)
gtk_inspector_widget_tree_append_object (wt, G_OBJECT (popup), &iter, "popup");
+
+ child = G_OBJECT (gtk_combo_box_get_model (GTK_COMBO_BOX (object)));
+ if (child)
+ gtk_inspector_widget_tree_append_object (wt, child, &iter, "model");
}
if (GTK_IS_TREE_VIEW (object))
@@ -400,15 +405,6 @@ gtk_inspector_widget_tree_append_object (GtkInspectorWidgetTree *wt,
gtk_inspector_widget_tree_append_object (wt, child, &iter, "model");
}
- if (GTK_IS_COMBO_BOX (object))
- {
- GObject *child;
-
- child = G_OBJECT (gtk_combo_box_get_model (GTK_COMBO_BOX (object)));
- if (child)
- gtk_inspector_widget_tree_append_object (wt, child, &iter, "model");
- }
-
if (GTK_IS_CELL_AREA (object))
{
FindAllData data;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]