st/button: Remove unused spacing member from private struct
It is only ever written, but never used anywhere. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1489>
This commit is contained in:
parent
237e470238
commit
330b44ede5
@ -83,8 +83,6 @@ struct _StButtonPrivate
|
|||||||
guint pressed : 3;
|
guint pressed : 3;
|
||||||
guint grabbed : 3;
|
guint grabbed : 3;
|
||||||
guint is_checked : 1;
|
guint is_checked : 1;
|
||||||
|
|
||||||
gint spacing;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static guint button_signals[LAST_SIGNAL] = { 0, };
|
static guint button_signals[LAST_SIGNAL] = { 0, };
|
||||||
@ -111,17 +109,10 @@ static void
|
|||||||
st_button_style_changed (StWidget *widget)
|
st_button_style_changed (StWidget *widget)
|
||||||
{
|
{
|
||||||
StButton *button = ST_BUTTON (widget);
|
StButton *button = ST_BUTTON (widget);
|
||||||
StButtonPrivate *priv = st_button_get_instance_private (button);
|
|
||||||
StButtonClass *button_class = ST_BUTTON_GET_CLASS (button);
|
StButtonClass *button_class = ST_BUTTON_GET_CLASS (button);
|
||||||
StThemeNode *theme_node = st_widget_get_theme_node (ST_WIDGET (button));
|
|
||||||
double spacing;
|
|
||||||
|
|
||||||
ST_WIDGET_CLASS (st_button_parent_class)->style_changed (widget);
|
ST_WIDGET_CLASS (st_button_parent_class)->style_changed (widget);
|
||||||
|
|
||||||
spacing = 6;
|
|
||||||
st_theme_node_lookup_length (theme_node, "border-spacing", FALSE, &spacing);
|
|
||||||
priv->spacing = (int)(0.5 + spacing);
|
|
||||||
|
|
||||||
/* update the label styling */
|
/* update the label styling */
|
||||||
st_button_update_label_style (button);
|
st_button_update_label_style (button);
|
||||||
|
|
||||||
@ -575,7 +566,6 @@ st_button_init (StButton *button)
|
|||||||
{
|
{
|
||||||
StButtonPrivate *priv = st_button_get_instance_private (button);
|
StButtonPrivate *priv = st_button_get_instance_private (button);
|
||||||
|
|
||||||
priv->spacing = 6;
|
|
||||||
priv->button_mask = ST_BUTTON_ONE;
|
priv->button_mask = ST_BUTTON_ONE;
|
||||||
|
|
||||||
clutter_actor_set_reactive (CLUTTER_ACTOR (button), TRUE);
|
clutter_actor_set_reactive (CLUTTER_ACTOR (button), TRUE);
|
||||||
|
Loading…
Reference in New Issue
Block a user