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_ 2005-11-18 14:38:23 +00:00
parent 3b59ac43ce
commit 3b5502ffa8

View file

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