Fixed markup errors in the combo box related documentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19847 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Quentin Mathe 2004-08-08 19:09:57 +00:00
parent 8f04d6a957
commit d52db5f427
3 changed files with 21 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2004-08-08 Quentin Mathe <qmathe@club-internet.fr>
* Source/NSComboBox.m:
* Source/NSComboBoxCell.m:
Fixed the class description markup errors which caused text
truncations in the documentation.
2004-08-08 01:19 Chad Hardin <cehardin@mac.com>
* Source/NSPageLayout.m: Ensure that the units on the panel

View file

@ -39,19 +39,22 @@ static NSNotificationCenter *nc;
/**
<unit>
<heading>Class Description</heading>
An NSComboBox is what we can call a completion/choices box, derived from
<p>An NSComboBox is what we can call a completion/choices box, derived from
NSTextField, it allows you to enter text like in a text field but also to click
in the ellipsis button (indicating the fact other user inputs are possible) on
the right of it to obtain a list of choices, you can use them as the text field
value by selecting a row in this list. You can also obtain direct completion
when it is enabled via <code>setCompletes:</code> to get a suggested text
field value updated as you type.
Like other NSControl classes, NSComboBox is a wrapper around a core piece which
field value updated as you type.</p>
<p>Like other NSControl classes, NSComboBox is a wrapper around a core piece which
implements the combo box behavior, a cell, which is in this case an
NSComboBoxCell.
NSComboBoxCell.</p>
</unit>
*/
/**
<p>No special instructions to use NSComboBox or text to detail the implementation.</p>
*/
@implementation NSComboBox
+ (void) initialize

View file

@ -699,19 +699,22 @@ numberOfRowsInColumn: (int)column
/**
<unit>
<heading>Class Description</heading>
An NSComboBoxCell is what we can call a completion/choices box cell, derived from
<p>An NSComboBoxCell is what we can call a completion/choices box cell, derived from
NSTextFieldCell, it allows you to enter text like in a text field but also to click
in the ellipsis button (indicating the fact other user inputs are possible) on
the right of it to obtain a list of choices, you can use them as the text field
value by selecting a row in this list. You can also obtain direct completion
when it is enabled via <code>setCompletes:</code> to get a suggested text
field value updated as you type.
Like other NSCell classes, NSComboBoxCell has a matching NSControl named NSComboBox
field value updated as you type. </p>
<p>Like other NSCell classes, NSComboBoxCell has a matching NSControl named NSComboBox
which is relying on it to implement the combo box behavior in a standalone
control.
control.</p>
</unit>
*/
/**
<p>No special instructions to use NSComboBoxCell or text to detail the implementation.</p>
*/
@implementation NSComboBoxCell
//