summaryrefslogtreecommitdiff
path: root/mate-panel/button-widget.c
diff options
context:
space:
mode:
authorMonsta <[email protected]>2015-12-18 14:34:10 +0300
committerMonsta <[email protected]>2015-12-18 14:34:52 +0300
commitc44f3d28a5fc97aa143e97f726769712b0070328 (patch)
tree4c0ff86bc19f016bb4a0263dfa1b06d583e287cd /mate-panel/button-widget.c
parent38b4b98ce3993a1dadb4f84d9f981ed9c4e5340a (diff)
downloadmate-panel-c44f3d28a5fc97aa143e97f726769712b0070328.tar.bz2
mate-panel-c44f3d28a5fc97aa143e97f726769712b0070328.tar.xz
button-widget: avoid build warnings about unused variables
Diffstat (limited to 'mate-panel/button-widget.c')
-rw-r--r--mate-panel/button-widget.c23
1 files changed, 9 insertions, 14 deletions
diff --git a/mate-panel/button-widget.c b/mate-panel/button-widget.c
index 78c5db11..055097a6 100644
--- a/mate-panel/button-widget.c
+++ b/mate-panel/button-widget.c
@@ -429,18 +429,18 @@ button_widget_expose (GtkWidget *widget,
#endif
{
ButtonWidget *button_widget;
- GtkButton *button;
- GdkWindow *window;
int width;
int height;
#if GTK_CHECK_VERSION (3, 0, 0)
GtkStyleContext *context;
GtkStateFlags state_flags;
#else
+ GtkButton *button;
+ GdkWindow *window;
GtkAllocation allocation;
GtkStyle *style;
-#endif
GdkRectangle area, image_bound;
+#endif
int off;
int x, y, w, h;
GdkPixbuf *pb = NULL;
@@ -458,14 +458,14 @@ button_widget_expose (GtkWidget *widget,
if (!button_widget->priv->pixbuf_hc && !button_widget->priv->pixbuf)
return FALSE;
- button = GTK_BUTTON (widget);
- window = gtk_widget_get_window (widget);
#if GTK_CHECK_VERSION (3, 0, 0)
state_flags = gtk_widget_get_state_flags (widget);
width = gtk_widget_get_allocated_width (widget);
height = gtk_widget_get_allocated_height (widget);
#else
gtk_widget_get_allocation (widget, &allocation);
+ button = GTK_BUTTON (widget);
+ window = gtk_widget_get_window (widget);
#endif
/* offset for pressed buttons */
@@ -535,13 +535,11 @@ button_widget_expose (GtkWidget *widget,
context = gtk_widget_get_style_context (widget);
if (button_widget->priv->arrow) {
- GtkArrowType arrow_type;
-
gdouble angle, size;
gtk_style_context_save (context);
gtk_style_context_set_state (context, state_flags);
- arrow_type = calc_arrow (button_widget->priv->orientation,
+ calc_arrow (button_widget->priv->orientation,
width, height,
&x, &y,
&angle, &size);
@@ -583,9 +581,6 @@ button_widget_expose (GtkWidget *widget,
gtk_style_context_restore (context);
}
-
- return FALSE;
-}
#else
style = gtk_widget_get_style (widget);
@@ -640,10 +635,10 @@ button_widget_expose (GtkWidget *widget,
&event->area, widget, "button",
x, y, width, height);
}
-
+#endif
+
return FALSE;
}
-#endif
#if GTK_CHECK_VERSION (3, 0, 0)
static void
@@ -694,7 +689,6 @@ button_widget_size_allocate (GtkWidget *widget,
GtkAllocation *allocation)
{
ButtonWidget *button_widget = BUTTON_WIDGET (widget);
- GtkButton *button = GTK_BUTTON (widget);
int size;
#if GTK_CHECK_VERSION (3, 0, 0)
@@ -725,6 +719,7 @@ button_widget_size_allocate (GtkWidget *widget,
#if !GTK_CHECK_VERSION (3, 0, 0)
gtk_widget_set_allocation (widget, allocation);
+ GtkButton *button = GTK_BUTTON (widget);
if (gtk_widget_get_realized (widget)) {
gdk_window_move_resize (button->event_window,