mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 22:46:15 +01:00
Fix the icon property implementation
Turns out both the setter and the getter were broken... Fixes bug 585676.
This commit is contained in:
parent
b533a944ff
commit
642e9c7540
@ -82,6 +82,7 @@ g_emblem_get_property (GObject *object,
|
||||
{
|
||||
case PROP_ICON:
|
||||
g_value_set_object (value, emblem->icon);
|
||||
break;
|
||||
|
||||
case PROP_ORIGIN:
|
||||
g_value_set_enum (value, emblem->origin);
|
||||
@ -104,7 +105,7 @@ g_emblem_set_property (GObject *object,
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_ICON:
|
||||
emblem->icon = g_value_get_object (value);
|
||||
emblem->icon = g_value_dup_object (value);
|
||||
break;
|
||||
|
||||
case PROP_ORIGIN:
|
||||
|
Loading…
Reference in New Issue
Block a user