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:

committed by
Mukund Sivaraman

parent
182b2e27f8
commit
152f2a28f9
@ -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"
|
||||
|
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user