diff --git a/ChangeLog b/ChangeLog
index 41dcae983..a4beb8853 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-24 fabien Draws the cell at row row and column column See Also: [NSCell-drawWithFrame:inView:] -setDrawsCellBackground:
+ -drawsCellBackground (Un)Highlights the cell (if exists ) at row at row row
+ and column column. and maks the cell rect for display. See Also: -setNeedsDisplayInRect: [NSCell-setHighlighted:] Sends the cell action, if a NSMatrix's cell is selected
+ and enabled, sends the NSMatrix action otherwise. Returns YES if
+ the action is succesfully sent. NO if a cell is selected but not enabled
+ or if an action can not be sent. See Also: -sendAction:to: -selectedCell Sets the message to send when a double click occurs.
+ NB: In GNUstep the following method does *not* set
+ ignoresMultiClick to NO as in the MacOS-X spec.
+ It simply sets the doubleAction, as in OpenStep spec. -doubleAction Returns the action method, used when the user double clicks See Also: -setDoubleAction: Sets whether the NSMatrix resizes its cells automatically See Also: -autosizesCells Returns whether the NSMatrix resizes its cells automatically See Also: -autosizesCells Creates ( if needed ) and returns the shared NSOpenPanel instance Creates ( if needed ) and returns the shared NSOpenPanel instance. Allows the user to select multiple files if flag is YES.
- The default behavior is not to allow multiple selections See Also: -allowsMultipleSelection
- * NB: In GNUstep the following method does *not* set
- * ignoresMultiClick to NO as in the MacOS-X spec.
- * It simply sets the doubleAction, as in OpenStep spec.
+/**
See Also: + -allowsMultipleSelection [NSBrowser-setAllowsMultipleSelection:]
*/ - (void) setAllowsMultipleSelection: (BOOL)flag { @@ -297,17 +298,17 @@ static NSOpenPanel *_gs_gui_open_panel = nil; } /**Returns YES if the user is allowed to select multiple files. The - default behavior is not to allow mutiple selections.
-See Also: -setAllowsMultipleSelection:
+ default behavior is not to allow mutiple selections.See Also: + -setAllowsMultipleSelection: [NSBrowser-allowsMultipleSelection]
*/ - (BOOL) allowsMultipleSelection { return [_browser allowsMultipleSelection]; } -/**Allows the user to choose directories if flag is YES. The default - behavior is to allow choosing directories.
-See Also: -canChooseDirectories
+/**Allows the user to choose directories if flag is YES. The default + behavior is to allow choosing directories.
+See Also: -canChooseDirectories [NSBrowser-setAllowsBranchSelection:]
*/ - (void) setCanChooseDirectories: (BOOL)flag { @@ -355,9 +356,9 @@ static NSOpenPanel *_gs_gui_open_panel = nil; return nil; } -/**Returns an array containing the absolute paths (as NSString - objects) of the selected files and directories. If multiple - selections aren't allowed, the array contains a single name.
+/**Returns an array containing the absolute paths (as NSString + objects) of the selected files and directories. If multiple + selections aren't allowed, the array contains a single name.
*/ - (NSArray *) filenames { @@ -420,9 +421,9 @@ static NSOpenPanel *_gs_gui_open_panel = nil; /* * Running the NSOpenPanel */ -/**Displays the open panel in a modal session, filtering for - files that have the specified types
-See Also: -runModalForDirectory:file:types:
+/**Displays the open panel in a modal session, filtering for + files that have the specified types
+See Also: -runModalForDirectory:file:types:
*/ - (int) runModalForTypes: (NSArray *)fileTypes {