mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 17:52:42 +00:00
Corrected (hopefully) last patch.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20907 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
184a0e3da3
commit
d9c6b6ac53
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-03-14 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSMatrix.m:
|
||||
([_renewRows:columns:rowSpace:colSpace:]) Corrected last patch so
|
||||
that the open panel works again. Initialize all new cells, not
|
||||
just the requested ones.
|
||||
|
||||
2005-03-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSMatrix.m:
|
||||
|
|
|
@ -3621,7 +3621,7 @@ static SEL getSel;
|
|||
{
|
||||
rowSpace--;
|
||||
}
|
||||
else if (i < col)
|
||||
else
|
||||
{
|
||||
(*mkImp)(self, mkSel, i, j);
|
||||
}
|
||||
|
@ -3633,10 +3633,7 @@ static SEL getSel;
|
|||
{
|
||||
_cells[i][j] = nil;
|
||||
_selectedCells[i][j] = NO;
|
||||
if (i < col)
|
||||
{
|
||||
(*mkImp)(self, mkSel, i, j);
|
||||
}
|
||||
(*mkImp)(self, mkSel, i, j);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue