prepend instead of appending to list.

2007-06-13  Mukund Sivaraman  <muks@mukund.org>

        * plug-ins/common/tiff-load.c: prepend instead of appending to list.


svn path=/trunk/; revision=22775
This commit is contained in:
Mukund Sivaraman
2007-06-13 17:31:02 +00:00
committed by Mukund Sivaraman
parent 182b2e27f8
commit 152f2a28f9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-06-13 Mukund Sivaraman <muks@mukund.org>
* plug-ins/common/tiff-load.c: prepend instead of appending to list.
2007-06-13 Kevin Cozens <kcozens@cvs.gnome.org>
* plug-ins/script-fu/tinyscheme/scheme.c (putchars): Update "cursor"

View File

@ -703,7 +703,7 @@ load_image (const gchar *filename,
gimp_image_set_filename (image, fname);
g_free (fname);
images_list = g_list_append (images_list, GINT_TO_POINTER (image));
images_list = g_list_prepend (images_list, GINT_TO_POINTER (image));
}
else if (pages->o_pages == pages->n_pages)
{