StTooltip: add missing break statement
This commit is a small fix to prevent the tip area property setter code from erroneously falling through to the unhandled property case. https://bugzilla.gnome.org/show_bug.cgi?id=648894
This commit is contained in:
parent
8ec62ce46b
commit
0d440bb0a2
@ -91,6 +91,7 @@ st_tooltip_set_property (GObject *gobject,
|
||||
|
||||
case PROP_TIP_AREA:
|
||||
st_tooltip_set_tip_area (tooltip, g_value_get_boxed (value));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
||||
|
Loading…
Reference in New Issue
Block a user