Improved documentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22037 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fabien Vallon 2005-11-18 14:38:23 +00:00
parent 3516d7606a
commit b566e2c30b

View file

@ -162,9 +162,10 @@ static BOOL supports_lzw_compression = NO;
return types;
}
/** Returns a newly allocated NSBitmapImageRep object representing the
image stored in imageData. If the image data contains more than one
image, the first one is choosen. */
/** <p>Returns a newly allocated NSBitmapImageRep object representing the
image stored in imageData. If the image data contains more than one
image, the first one is choosen.</p><p>See Also: +imageRepWithData:</p>
*/
+ (id) imageRepWithData: (NSData *)imageData
{
NSArray* array;
@ -177,8 +178,10 @@ static BOOL supports_lzw_compression = NO;
return nil;
}
/** Returns an array containing newly allocated NSBitmapImageRep
objects representing the images stored in imageData. */
/**<p>Returns an array containing newly allocated NSBitmapImageRep
objects representing the images stored in imageData.</p>
<p>See Also: +imageRepWithData:</p>
*/
+ (NSArray*) imageRepsWithData: (NSData *)imageData
{
int i, images;