X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-data-store.c;h=9ce07ae2caa58f11e39fa351da7c47174ee393c6;hp=8808fd32588fe29f46b73dfe232a1dfccdf620a6;hb=c198ca9808879cdf1cff1cec664137d937c0a3c0;hpb=5c3291dc396b795696e94f47780308fd7ace6fc4 diff --git a/src/ui/gui/psppire-data-store.c b/src/ui/gui/psppire-data-store.c index 8808fd32..9ce07ae2 100644 --- a/src/ui/gui/psppire-data-store.c +++ b/src/ui/gui/psppire-data-store.c @@ -653,12 +653,11 @@ psppire_data_store_clear_datum (PsppireSheetModel *model, PsppireDataStore *store = PSPPIRE_DATA_STORE (model); union value v; - int width; const struct variable *pv = psppire_dict_get_variable (store->dict, col); + int width = var_get_width (pv); const gint index = var_get_case_index (pv) ; - width = var_is_numeric (pv) ? 0 : MAX_SHORT_STRING; value_init (&v, width); value_set_missing (&v, width); psppire_data_store_set_value (store, row, index, &v);