More documentation tidyups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17302 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2003-07-22 16:52:17 +00:00
parent 9210e7dacc
commit e0a0824343
5 changed files with 11 additions and 6 deletions

View file

@ -10,6 +10,10 @@
* Source/NSPopUpButtonCell.m: ditto * Source/NSPopUpButtonCell.m: ditto
* Source/NSTextContainer.m: ditto * Source/NSTextContainer.m: ditto
* Source/NSWorkspace.m: ditto * Source/NSWorkspace.m: ditto
* Source/NSFont.m: ditto
* Source/NSOpenPanel.m: ditto
* Source/NSPasteboard.m: ditto
* Source/NSView.m: ditto
2003-07-22 Andrew Ruder <aeruder@ksu.edu> 2003-07-22 Andrew Ruder <aeruder@ksu.edu>

View file

@ -79,7 +79,7 @@ newNameWithMatrix(NSString *name, const float *matrix, BOOL fix,
<p>The NSFont class allows control of the fonts used for displaying <p>The NSFont class allows control of the fonts used for displaying
text anywhere on the screen. The primary methods for getting a text anywhere on the screen. The primary methods for getting a
particular font are -fontWithName:matrix: and -fontWithName:size: which particular font are +fontWithName:matrix: and +fontWithName:size: which
take the name and size of a particular font and return the NSFont object take the name and size of a particular font and return the NSFont object
associated with that font. In addition there are several convenience associated with that font. In addition there are several convenience
mathods which make it easier to get certain types of fonts. </p> mathods which make it easier to get certain types of fonts. </p>

View file

@ -247,7 +247,7 @@ static NSOpenPanel *_gs_gui_open_panel = nil;
or NSCancelButton depending on which button the user pressed. or NSCancelButton depending on which button the user pressed.
</p> </p>
<p> <p>
Use the -filename or -filenames: method to retrieve the name of the Use the -filename or -filenames method to retrieve the name of the
file the user selected. file the user selected.
</p> </p>
*/ */

View file

@ -2257,6 +2257,7 @@ NSCreateFileContentsPboardType(NSString *fileType)
* [NSPasteboard-propertyListForType:] method. * [NSPasteboard-propertyListForType:] method.
* </p> * </p>
* <p>See also the NSGetFileType() and NSGetFileTypes() functions. * <p>See also the NSGetFileType() and NSGetFileTypes() functions.
* </p>
*/ */
NSString* NSString*
NSCreateFilenamePboardType(NSString *fileType) NSCreateFilenamePboardType(NSString *fileType)

View file

@ -2113,7 +2113,7 @@ in the main thread.
} }
/** /**
* As an exception to the general rules for threads and -gui, this * As an exception to the general rules for threads and gui, this
* method is thread-safe and may be called from any thread. Display * method is thread-safe and may be called from any thread. Display
* will always be done in the main thread. (Note that other methods are * will always be done in the main thread. (Note that other methods are
* in general not thread-safe; if you want to access other properties of * in general not thread-safe; if you want to access other properties of
@ -2181,7 +2181,7 @@ in the main thread.
* requires updating. This automatically informs any superviews of * requires updating. This automatically informs any superviews of
* any updating they need to do. * any updating they need to do.
* *
* As an exception to the general rules for threads and -gui, this * As an exception to the general rules for threads and gui, this
* method is thread-safe and may be called from any thread. Display * method is thread-safe and may be called from any thread. Display
* will always be done in the main thread. (Note that other methods are * will always be done in the main thread. (Note that other methods are
* in general not thread-safe; if you want to access other properties of * in general not thread-safe; if you want to access other properties of
@ -2634,7 +2634,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
/** /**
* <p>The effect of the -setNextkeyView: method is to set aView to be the * <p>The effect of the -setNextKeyView: method is to set aView to be the
* value returned by subsequent calls to the receivers -nextKeyView method. * value returned by subsequent calls to the receivers -nextKeyView method.
* This also has the effect of setting the previous key view of aView, * This also has the effect of setting the previous key view of aView,
* so that subsequent calls to its -previousKeyView method will return * so that subsequent calls to its -previousKeyView method will return
@ -2642,7 +2642,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
* </p> * </p>
* <p>As a special case, if you pass nil as aView then the -previousKeyView * <p>As a special case, if you pass nil as aView then the -previousKeyView
* of the receivers current -nextKeyView is set to nil as well as the * of the receivers current -nextKeyView is set to nil as well as the
* receivers -nextKeyView: being set to nil.<br /> * receivers -nextKeyView being set to nil.<br />
* This behavior provides MacOS-X compatibility. * This behavior provides MacOS-X compatibility.
* </p> * </p>
* <p>If you pass a non-view object other than nil, an * <p>If you pass a non-view object other than nil, an