2006-09-07 [wwp] 2.4.0cvs162

* src/prefs_filtering.c
		code simplification (get rid of dup var. assignment).
This commit is contained in:
Tristan Chabredier 2006-09-07 14:26:33 +00:00
parent 84bd0295c1
commit bb6cb0c528
4 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2006-09-07 [wwp] 2.4.0cvs162
* src/prefs_filtering.c
code simplification (get rid of dup var. assignment).
2006-09-07 [wwp] 2.4.0cvs161
* src/summaryview.c

View file

@ -1853,3 +1853,4 @@
( cvs diff -u -r 1.83.2.88 -r 1.83.2.89 src/mimeview.c; ) > 2.4.0cvs159.patchset
( cvs diff -u -r 1.83.2.89 -r 1.83.2.90 src/mimeview.c; ) > 2.4.0cvs160.patchset
( cvs diff -u -r 1.395.2.245 -r 1.395.2.246 src/summaryview.c; ) > 2.4.0cvs161.patchset
( cvs diff -u -r 1.59.2.44 -r 1.59.2.45 src/prefs_filtering.c; ) > 2.4.0cvs162.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=4
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=161
EXTRA_VERSION=162
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -878,11 +878,8 @@ static gint prefs_filtering_list_view_set_row(gint row, FilteringProp * prop)
if (prop->name)
name = prop->name;
account_id = prop->account_id;
if (account_id > 0) {
if (account_id > 0)
account_name = account_find_from_id(account_id)->account_name;
} else {
account_name = (gchar *)Q_("Filtering Account Menu|All");
}
enabled = prop->enabled;
}