mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
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:
parent
3516d7606a
commit
b566e2c30b
1 changed files with 8 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue