Improved documentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22071 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fabien Vallon 2005-11-22 09:41:36 +00:00
parent 9a3e0821d7
commit db61fcc427
2 changed files with 8 additions and 5 deletions

View file

@ -2,6 +2,7 @@
* Source/NSCell.m : Improved documentation * Source/NSCell.m : Improved documentation
* Source/NSControl.m : Improved documentation * Source/NSControl.m : Improved documentation
* Source/NSCustomImageRep.m : Improved documentation
2005-11-21 fabien <fabien@sonappart.net> 2005-11-21 fabien <fabien@sonappart.net>

View file

@ -38,8 +38,9 @@
*/ */
@implementation NSCustomImageRep @implementation NSCustomImageRep
/** Initializes a new NSCustomImageRep with .When a -draw message is recieved /**<p> Initializes a new NSCustomImageRep with. When a -draw message is
it send aSelector message to the delegate anObject. recieved it send aSelector message to the delegate anObject.</p>
<p>See Also: -delegate -drawSelector [NSImageRep-draw]</p>
*/ */
- (id) initWithDrawSelector: (SEL)aSelector - (id) initWithDrawSelector: (SEL)aSelector
delegate: (id)anObject delegate: (id)anObject
@ -59,7 +60,7 @@
[super dealloc]; [super dealloc];
} }
/** <p>Returns the NSCustomImageRep's delegate</p> /** <p>Returns the NSCustomImageRep's delegate.</p>
<p>See Also: -initWithDrawSelector:delegate:</p> <p>See Also: -initWithDrawSelector:delegate:</p>
*/ */
- (id) delegate - (id) delegate
@ -67,8 +68,9 @@
return _delegate; return _delegate;
} }
/**<p>Returns the draw method selector sent to the delegate when /**<p>Returns the draw method sent to the delegate when NSCustomImageRep
NSCustomImageRep recieved a -draw message</p> recieved a -draw message.</p>
<p>See Also: -initWithDrawSelector:delegate: [NSImageRep-draw]</p>
*/ */
- (SEL) drawSelector - (SEL) drawSelector
{ {