mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 12:00:45 +00:00
Edits suggested by @fredkiefer during review
This commit is contained in:
parent
1d6a850081
commit
a815ad5bb8
2 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@
|
|||
|
||||
2024-05-26 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* ChangeLog: Update for new release
|
||||
* ChangeLog: Update for new release
|
||||
* ANNOUNCE:
|
||||
* NEWS:
|
||||
* Documentation/news.texi: Update of release notes for 0.31.0.
|
||||
|
|
|
@ -3667,8 +3667,8 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
|
|||
makeIfNecessary: YES];
|
||||
|
||||
// If the view is already part of the table, don't re-add it...
|
||||
if ([[tableView subviews] containsObject: rowView] == NO
|
||||
&& rowView != nil)
|
||||
if (rowView != nil
|
||||
&& [[tableView subviews] containsObject: rowView] == NO)
|
||||
{
|
||||
NSRect cellFrame = [tableView frameOfCellAtColumn: 0
|
||||
row: rowIndex];
|
||||
|
|
Loading…
Reference in a new issue