X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-data-store.c;h=65a4391d224402e353648de7795607c57e03366b;hb=5bacd5c053e285ccfba287d2b28079f1d1c49cc9;hp=0cb8ef913b4c7515f47bf5c0715232728c3bbbf8;hpb=8acca2de53c1852f38726f70fc6516b34732a79f;p=pspp diff --git a/src/ui/gui/psppire-data-store.c b/src/ui/gui/psppire-data-store.c index 0cb8ef913b..65a4391d22 100644 --- a/src/ui/gui/psppire-data-store.c +++ b/src/ui/gui/psppire-data-store.c @@ -442,10 +442,10 @@ psppire_data_store_insert_new_case(PsppireDataStore *ds, gint posn) for (v = 0 ; v < psppire_dict_get_var_cnt (ds->dict) ; ++v) { const struct PsppireVariable *pv = psppire_dict_get_variable(ds->dict, v); - if (ALPHA == psppire_variable_get_type(pv) ) + if (VAR_STRING == psppire_variable_get_type(pv) ) continue; - case_data_rw (&cc, psppire_variable_get_fv (pv))->f = SYSMIS; + case_data_rw_idx (&cc, psppire_variable_get_fv (pv))->f = SYSMIS; } result = psppire_case_file_insert_case (ds->case_file, &cc, posn); @@ -530,7 +530,7 @@ psppire_data_store_clear_datum (GSheetModel *model, const gint index = psppire_variable_get_fv(pv) ; - if ( psppire_variable_get_type(pv) == NUMERIC) + if ( psppire_variable_get_type(pv) == VAR_NUMERIC) v.f = SYSMIS; else memcpy(v.s, "", MAX_SHORT_STRING); @@ -569,20 +569,10 @@ psppire_data_store_set_string(GSheetModel *model, } #endif - { - const gint index = psppire_variable_get_fv(pv); - - struct data_in d_in; - d_in.s = text; - d_in.e = text + strlen(text); - d_in.v = 0; - d_in.f1 = d_in.f2 = 0; - d_in.format = * psppire_variable_get_write_spec(pv); - d_in.flags = 0; - - psppire_case_file_data_in(store->case_file, row, index, &d_in) ; - } - + psppire_case_file_data_in (store->case_file, row, + psppire_variable_get_fv (pv), ss_cstr (text), + psppire_variable_get_write_spec (pv)); + return TRUE; }