From: John Darrington Date: Mon, 17 Apr 2017 15:56:08 +0000 (+0200) Subject: Remove unused variable X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5440f8c4520e5df405c3377e20aa27b63d49abc4;p=pspp Remove unused variable --- diff --git a/src/ui/gui/psppire-data-editor.c b/src/ui/gui/psppire-data-editor.c index 365cbdb0ec..1d804ef05b 100644 --- a/src/ui/gui/psppire-data-editor.c +++ b/src/ui/gui/psppire-data-editor.c @@ -977,7 +977,6 @@ psppire_data_editor_init (PsppireDataEditor *de) gtk_style_context_add_class (context, "psppire-data-editor"); de->font = NULL; - de->old_vbox_widget = NULL; g_object_set (de, "tab-pos", GTK_POS_BOTTOM, NULL); diff --git a/src/ui/gui/psppire-data-editor.h b/src/ui/gui/psppire-data-editor.h index 02959150ca..e2db89f51a 100644 --- a/src/ui/gui/psppire-data-editor.h +++ b/src/ui/gui/psppire-data-editor.h @@ -76,16 +76,12 @@ struct _PsppireDataEditor GtkWidget *var_sheet_row_popup; GtkWidget *var_clear_variables_menu_item; - /* Data sheet tab. */ GtkWidget *vbox; /* Top-level widget in tab. */ GtkWidget *cell_ref_label; /* GtkLabel that shows selected case and var. */ GtkWidget *datum_entry; /* PsppireValueEntry for editing current cell. */ - gboolean split; /* True if data sheets are split. */ - - /* UI manager for whichever var or data sheet is currently in use. */ - GtkWidget *old_vbox_widget; + gboolean split; /* True if the sheets are in split view. */ GtkCellRenderer *value_label_renderer; };