mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Matrix fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5167 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
96696de22c
commit
ce20cbe118
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Nov 12 12:02:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSMatrix.m: ([-setCellClass:]) was calling methodForSelector
|
||||
when it should have been instanceMethodForSelector.
|
||||
|
||||
Fri Nov 12 11:53:52 1999 Lyndon Tremblay <ltremblay@mezzanine.xnot.com>
|
||||
|
||||
* NSBrowser.m: Removed access to unused variable `draw_background',
|
||||
|
|
|
@ -1856,7 +1856,7 @@ fprintf(stderr, " NSMatrix: selectTextAtRow --- ");
|
|||
cellClass = defaultCellClass;
|
||||
}
|
||||
cellNew = [cellClass methodForSelector: allocSel];
|
||||
cellInit = [cellClass methodForSelector: initSel];
|
||||
cellInit = [cellClass instanceMethodForSelector: initSel];
|
||||
DESTROY(cellPrototype);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue