[glade] Fixed glade_gtk_image_get_property() chainup. (was calling set_property) Fixes bug that prevented th



commit 20593038f409120c91b8175d7d619f1f58b04c4b
Author: Juan Pablo Ugarte <juanpablougarte gmail com>
Date:   Sat Sep 14 18:11:59 2013 -0300

    Fixed glade_gtk_image_get_property() chainup. (was calling set_property)
    Fixes bug that prevented the runtime object to show the right pixbuf when copying a GtkImage.

 plugins/gtk+/glade-gtk-image.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plugins/gtk+/glade-gtk-image.c b/plugins/gtk+/glade-gtk-image.c
index 92760f4..a5b87b2 100644
--- a/plugins/gtk+/glade-gtk-image.c
+++ b/plugins/gtk+/glade-gtk-image.c
@@ -150,7 +150,7 @@ glade_gtk_image_get_property (GladeWidgetAdaptor * adaptor,
       g_value_unset (&int_value);
     }
   else
-    GWA_GET_CLASS (GTK_TYPE_WIDGET)->set_property (adaptor, object, id, value);
+    GWA_GET_CLASS (GTK_TYPE_WIDGET)->get_property (adaptor, object, id, value);
 }
 
 void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]