From 08a0832a7ad68b708727f6bb1288888dfa4cb1a9 Mon Sep 17 00:00:00 2001 From: monsta Date: Mon, 21 Dec 2015 15:45:18 +0300 Subject: panel-widget: drop unused variables (assigned but never read after) --- mate-panel/panel-widget.c | 10 ---------- mate-panel/panel-widget.h | 6 ------ 2 files changed, 16 deletions(-) (limited to 'mate-panel') diff --git a/mate-panel/panel-widget.c b/mate-panel/panel-widget.c index e3752d61..0f59a79c 100644 --- a/mate-panel/panel-widget.c +++ b/mate-panel/panel-widget.c @@ -1587,10 +1587,6 @@ panel_widget_size_allocate(GtkWidget *widget, GtkAllocation *allocation) gtk_widget_size_allocate(ad->applet,&challoc); } } - if(panel->orient == GTK_ORIENTATION_HORIZONTAL) - panel->thick = allocation->height; - else - panel->thick = allocation->width; panel_widget_set_background_region (panel); } @@ -1863,7 +1859,6 @@ panel_widget_init (PanelWidget *panel) panel->packed = FALSE; panel->orient = GTK_ORIENTATION_HORIZONTAL; - panel->thick = PANEL_MINIMUM_WIDTH; panel->size = G_MAXINT; panel->applet_list = NULL; panel->master_widget = NULL; @@ -2741,7 +2736,6 @@ panel_widget_add (PanelWidget *panel, ad->pos = pos; ad->constrained = pos; ad->drag_off = 0; - ad->no_die = 0; ad->size_constrained = FALSE; ad->expand_major = FALSE; ad->expand_minor = FALSE; @@ -2812,8 +2806,6 @@ panel_widget_reparent (PanelWidget *old_panel, gtk_widget_queue_resize (GTK_WIDGET (new_panel)); gtk_widget_queue_resize (GTK_WIDGET (old_panel)); - ad->no_die++; - panel_widget_reset_saved_focus (old_panel); if (gtk_container_get_focus_child (GTK_CONTAINER (old_panel)) == applet) focus_widget = gtk_window_get_focus (GTK_WINDOW (old_panel->toplevel)); @@ -2837,8 +2829,6 @@ panel_widget_reparent (PanelWidget *old_panel, gdk_flush(); - ad->no_die--; - emit_applet_moved (new_panel, ad); return TRUE; diff --git a/mate-panel/panel-widget.h b/mate-panel/panel-widget.h index c844b217..20698483 100644 --- a/mate-panel/panel-widget.h +++ b/mate-panel/panel-widget.h @@ -72,10 +72,6 @@ struct _AppletData int drag_off; /* offset on the applet where drag was started */ - int no_die; /* if >0 never send the about to die - signal, an int and not a bool for - nesting reasons */ - /* Valid size ranges for expanded applets */ int * size_hints; int size_hints_len; @@ -101,8 +97,6 @@ struct _PanelWidget AppletData *currently_dragged_applet; - int thick; - PanelBackground background; GtkWidget *master_widget; -- cgit v1.2.1