[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.7.9-191-g1b478
From: |
Ben Pfaff |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.7.9-191-g1b4785c |
Date: |
Wed, 25 Apr 2012 05:25:10 +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 1b4785cbce99af4c195b5ddd9e08b3f3c3569bd5 (commit)
from a9d0f71010e7bfc3163e4c6b64611a994a72fa97 (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 1b4785cbce99af4c195b5ddd9e08b3f3c3569bd5
Author: Ben Pfaff <address@hidden>
Date: Tue Apr 24 22:24:55 2012 -0700
PsppireValueEntry: Simplify 'if' condition.
The statement
if ((model != NULL) && (model != old_model))
can be simplifed to just:
if (model != NULL)
because if 'model' is nonnull then it is different from old_model,
because 'model' is a newly allocated GtkListStore.
-----------------------------------------------------------------------
Summary of changes:
src/ui/gui/psppire-value-entry.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.7.9-191-g1b4785c,
Ben Pfaff <=