2007-07-07 John Darrington <john@darrington.wattle.id.au>
+
+ * psppire-data-store.c psppire-data-store.h: Made cases number from
+ 1 instead of 0.
* psppire-data-store.c: Added a tooltip like feature to display
the label of variables.
TRAILING_ROWS + psppire_case_file_get_case_count (ds->case_file))
return 0;
- s = g_strdup_printf (_("%d"), unit);
+ s = g_strdup_printf (_("%d"), unit + FIRST_CASE_NUMBER);
text = pspp_locale_to_utf8 (s, -1, 0);
#include "psppire-dict.h"
#include "psppire-case-file.h"
+#define FIRST_CASE_NUMBER 1
+
+
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */