In [imageUnfilteredFileTypes] add the tiff entries always to the

front of the list. As the standard GNUstep images are in this
format, this will speed up image loading.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16200 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
FredKiefer 2003-03-18 23:47:23 +00:00
parent efa8df36c4
commit e59a6eb372

View file

@ -84,8 +84,8 @@
if (wtypes != nil)
{
types = [wtypes mutableCopy];
[(NSMutableArray *)types addObject: @"tiff"];
[(NSMutableArray *)types addObject: @"tif"];
[(NSMutableArray *)types insertObject: @"tiff" atIndex: 0];
[(NSMutableArray *)types insertObject: @"tif" atIndex: 1];
}
else
{