pspp-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.7.9-153-g667d4


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.7.9-153-g667d40a
Date: Tue, 17 Apr 2012 03:19:18 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU PSPP".

The branch, master has been updated
       via  667d40a8359a4627b84a27cd46de5eaf0f509aba (commit)
       via  1173dd76c5e0a4f85f45cdc9d95b5be43aa552d3 (commit)
       via  9b55c770e627dd87c84ef64d8589a80fdf6b7431 (commit)
       via  a46ff9d9503e9db1298c896b5a219e402706eb38 (commit)
       via  6bd3da8129aab0e13dbac97af88295e1d9e20d9c (commit)
       via  93a5866e2265a1155dd33eb6916c6172d05f3131 (commit)
       via  a93017835eed453a8a4b5917a3a7b3a371828b10 (commit)
       via  97c7da1637d27b1c37ff9f8c95db6cddff94b31c (commit)
       via  674fde3ca5d316e3633de4dd64f897af27674243 (commit)
       via  7c5cb77947e564dedd0c960afdff8d2b1e61f3b6 (commit)
      from  c43efc75c86dd48cd67f23a4d3b5132964b331b8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 667d40a8359a4627b84a27cd46de5eaf0f509aba
Author: Ben Pfaff <address@hidden>
Date:   Tue Mar 20 21:29:54 2012 -0700

    psppire-dict: Return new var from psppire_dict_insert_variable().
    
    An upcoming commit will introduce a user for the return value.

commit 1173dd76c5e0a4f85f45cdc9d95b5be43aa552d3
Author: Ben Pfaff <address@hidden>
Date:   Tue Mar 20 21:28:44 2012 -0700

    psppire-dict: Make auto_generate_var_name() public, and rename.
    
    This function will acquire a few users in upcoming commits.
    
    This commit renames it to have the same prefix as other public
    functions in this file.

commit 9b55c770e627dd87c84ef64d8589a80fdf6b7431
Author: Ben Pfaff <address@hidden>
Date:   Tue Mar 20 21:18:32 2012 -0700

    psppire-dict: Get rid of static var in auto_generate_var_name().
    
    This isn't a big deal at the moment but I intend to add new users
    of this function in future commits, so then it becomes more
    important.

commit a46ff9d9503e9db1298c896b5a219e402706eb38
Author: Ben Pfaff <address@hidden>
Date:   Mon Mar 19 23:00:05 2012 -0700

    Allow dictionary 'var_deleted' callback to examine the deleted var.
    
    The dictionary 'var_deleted' callback is the last chance to look at
    a variable as it is getting deleted from a dictionary.  For some of
    the information in the variable, it legitimately doesn't make any
    sense to get it from the variable itself at this point, e.g. the
    index into the dictionary or the case, since it no longer is in
    a dictionary.  But for most of it, it's reasonable to get it from
    the variable itself, but the callback doesn't provide any way to
    do that, because it doesn't pass in the variable, just a dictionary
    index that is no longer correct.
    
    This commit changes the 'var_deleted' interface to pass in the
    variable plus the information that can no longer be obtained from
    the variable itself.  An upcoming change to the GUI will make use
    of this.
    
    This commit also adapts all the existing users to the new interface.

commit 6bd3da8129aab0e13dbac97af88295e1d9e20d9c
Author: Ben Pfaff <address@hidden>
Date:   Sat Mar 10 10:59:17 2012 -0800

    find-dialog: Change "Cancel" button to "Close" button.
    
    This button doesn't cancel anything, it just closes the dialog box,
    so "Close" seems like a better label.

commit 93a5866e2265a1155dd33eb6916c6172d05f3131
Author: Ben Pfaff <address@hidden>
Date:   Sun Jan 29 16:31:28 2012 -0800

    gtkxpaned: Remove write-only variables.

commit a93017835eed453a8a4b5917a3a7b3a371828b10
Author: Ben Pfaff <address@hidden>
Date:   Sat Mar 10 10:39:19 2012 -0800

    psppire-buttonbox: Fix style in header file.
    
    It's totally bizarre and unnecessary to define a macro in the
    middle of a function prototype, so this commit moves it.

commit 97c7da1637d27b1c37ff9f8c95db6cddff94b31c
Author: Ben Pfaff <address@hidden>
Date:   Tue Mar 27 20:52:11 2012 -0700

    psppire-data-store: Use NULL for a null pointer.

commit 674fde3ca5d316e3633de4dd64f897af27674243
Author: Ben Pfaff <address@hidden>
Date:   Tue Mar 27 18:25:01 2012 -0700

    psppire-data-store: Use PSPPIRE namespace instead of GTK+'s.

commit 7c5cb77947e564dedd0c960afdff8d2b1e61f3b6
Author: Ben Pfaff <address@hidden>
Date:   Mon Apr 9 22:33:35 2012 -0700

    psppire-data-editor: Drop psppire_data_editor_set_font() redundancy.
    
    set_font() recurses to a GtkContainer's children so
    psppire_data_editor_set_font() does not need to also do so.

-----------------------------------------------------------------------

Summary of changes:
 lib/gtk-contrib/gtkxpaned.c      |    8 ----
 src/data/dictionary.c            |    6 +-
 src/data/dictionary.h            |    3 +-
 src/ui/gui/find.ui               |    2 +-
 src/ui/gui/marshaller-list       |    2 +-
 src/ui/gui/psppire-buttonbox.c   |   11 +++++-
 src/ui/gui/psppire-buttonbox.h   |    9 ++--
 src/ui/gui/psppire-data-editor.c |   12 +++---
 src/ui/gui/psppire-data-store.c  |   10 ++--
 src/ui/gui/psppire-data-store.h  |   22 +++++-----
 src/ui/gui/psppire-dict.c        |   78 +++++++++++++++++++++++--------------
 src/ui/gui/psppire-dict.h        |    7 ++-
 src/ui/gui/psppire-var-store.c   |    5 +-
 13 files changed, 99 insertions(+), 76 deletions(-)


hooks/post-receive
-- 
GNU PSPP



reply via email to

[Prev in Thread] Current Thread [Next in Thread]