X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2FChangeLog;h=580971cb4621b097bd4c678aef6c880006204136;hb=7fe9a8e0060736a44164939695e4a6f1eb2af57f;hp=06d3fd5461c8205e303209860a6e5efd2dbf8ae2;hpb=402d393cf51a751198ad1be74b8c2d32ed934413;p=pspp diff --git a/src/ui/gui/ChangeLog b/src/ui/gui/ChangeLog index 06d3fd5461..580971cb46 100644 --- a/src/ui/gui/ChangeLog +++ b/src/ui/gui/ChangeLog @@ -1,9 +1,63 @@ +2008-02-29 John Darrington + + * psppire-data-editor.c psppire-data-editor.h: New files. Contains functionality + previously scattered thoughout data-editor.c and elsewhere. + + * data-editor.c data-editor.h: Abstracted the variable sheet, the data sheet and + their containing GtkNotebook into a new Object. + + * data-sheet.c data-sheet.h: Deleted. + + * var-sheet.c var-sheet.h: Deleted. Moved to psppire-var-sheet.[ch] + + * psppire-var-sheet.c psppire-var-sheet.h: New files. + + * clipboard.c clipboard.h: Deleted. Moved to psppire-data-editor.c + + * psppire-var-store.c psppire-var-store.h: Updated symbols to avoid name clashes. + + * comments-dialog.c compute-dialog.c crosstabs-dialog.c descriptives-dialog.c + examine-dialog.c find-dialog.c frequencies-dialog.c goto-case-dialog.c + oneway-anova-dialog.c rank-dialog.c recode-dialog.c select-cases-dialog.c + sort-cases-dialog.c split-file-dialog.c t-test-independent-samples-dialog.c + transpose-dialog.c variable-info-dialog.c weight-cases-dialog.c t-test-one-sample.c + t-test-paired-samples.c: Updated dialogs to match above changes. + +2008-02-27 Jason Stover + + * regression-dialog.c: New file. + + * regression-dialog.h: New file. + + * regression.glade: New file. + +2008-02-19 Ben Pfaff + + Patch #6426. Reviewed by John Darrington. + + * psppire-var-store.c: Add "trailing-rows", "format-type" + properties to PsppireVarStore. + +2008-02-19 Ben Pfaff + + * message-dialog.c (popup_messages): Always destroy `msg' and + `lead' strings, avoiding a memory leak. Thanks to John Darrington + for reporting the problem. + +2008-02-19 John Darrington + + * dict-display.c: Display names of variables in dialog box + dictionary treeviews, when the mouse hovers over the variable. + 2008-02-13 John Darrington * variable-info-dialog.c: Fix crash when clicking "Jump" when no variable selected. Add a valid predicate so that this can't happen anyway. + * compute-dialog.c: Fix crash when trying to set label on non + existant variable. + 2008-02-09 Ben Pfaff Consolidate multiple messages into single message dialog. Patch