X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdummy.c;h=96586d6b02ac0aee7e20235900fd7a16cc89e378;hb=e784ed9c161b6b7aec1402de566e6c09cb2031e0;hp=51c3e2da9f40e1ec7ba630f4e62a5de46c898928;hpb=f37e391fa8a6fd15c6c4be000237a66804fa9b5c;p=pspp diff --git a/src/ui/gui/dummy.c b/src/ui/gui/dummy.c index 51c3e2da9f..96586d6b02 100644 --- a/src/ui/gui/dummy.c +++ b/src/ui/gui/dummy.c @@ -31,6 +31,7 @@ #include "libpspp/compiler.h" #include "data/variable.h" +#include "psppire-data-store.h" #include "t-test-options.h" #include "src/language/stats/chart-category.h" #include "src/language/stats/aggregate.h" @@ -58,3 +59,19 @@ const struct agr_func agr_func_tab[] = const struct ag_func ag_func[] = {}; const int N_AG_FUNCS = 1; + + +gchar * +psppire_data_store_value_to_string (gpointer unused, PsppireDataStore *store, gint col, gint row, const GValue *v) +{ + assert (0); + return NULL; +} + +gboolean +psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row, + const gchar *in, GValue *out) +{ + assert (0); + return FALSE; +}