Remove unused variable
authorJohn Darrington <john@darrington.wattle.id.au>
Mon, 17 Apr 2017 15:56:08 +0000 (17:56 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Mon, 17 Apr 2017 15:57:56 +0000 (17:57 +0200)
src/ui/gui/psppire-data-editor.c
src/ui/gui/psppire-data-editor.h

index 365cbdb0eca40b22c0bce0ff49cfb06d9b9402cf..1d804ef05b230ca847612386eb0517264b97a13b 100644 (file)
@@ -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);
 
index 02959150ca57a4bbac6bd142ea125d1a36a0854a..e2db89f51a60b0da91e2ed284f8ad22ea634e8bf 100644 (file)
@@ -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;
 };