Mercurial > geeqie.yaz
diff src/pan-view.c @ 1367:fe4da037be21
When g_new0() is used, drop redundant initializations to NULL, FALSE or 0, second pass.
| author | zas_ |
|---|---|
| date | Sun, 01 Mar 2009 23:14:19 +0000 |
| parents | 77c3d9dcd6bc |
| children | a0bd58a6535f |
line wrap: on
line diff
--- a/src/pan-view.c Sun Mar 01 21:35:18 2009 +0000 +++ b/src/pan-view.c Sun Mar 01 23:14:19 2009 +0000 @@ -791,7 +791,6 @@ pg->y = j * ch / 2; pg->w = cw; pg->h = ch; - pg->list = NULL; pw->list_grid = g_list_prepend(pw->list_grid, pg); @@ -2360,11 +2359,6 @@ pw->ignore_symlinks = TRUE; - pw->list = NULL; - pw->list_static = NULL; - pw->list_grid = NULL; - - pw->fs = NULL; pw->overlay_id = -1; pw->idle_id = -1;
