Remove debug printfs that escaped from my local tree.
authorBen Pfaff <blp@gnu.org>
Mon, 11 May 2009 13:33:35 +0000 (06:33 -0700)
committerBen Pfaff <blp@gnu.org>
Sun, 7 Jun 2009 04:11:11 +0000 (21:11 -0700)
src/ui/gui/psppire-data-store.c

index 9ce07ae2caa58f11e39fa351da7c47174ee393c6..b67e27c139024308fecd33da12e0db50beb09d38 100644 (file)
@@ -347,7 +347,6 @@ insert_variable_callback (GObject *obj, gint var_num, gpointer data)
 
   variable = psppire_dict_get_variable (store->dict, var_num);
   posn = var_get_case_index (variable);
-  printf ("insert var_num=%d, posn=%d\n", var_num, posn);
   psppire_data_store_insert_value (store, var_get_width (variable), posn);
 
 #if AXIS_TRANSITION
@@ -1017,7 +1016,6 @@ psppire_data_store_insert_value (PsppireDataStore *ds,
   else
     value_set_missing (&value, width);
 
-  printf("insert column width=%d\n", width);
   datasheet_insert_column (ds->datasheet, &value, width, where);
 
   return TRUE;