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:
Richard Frith-MacDonald 1999-11-12 11:55:04 +00:00
parent 96696de22c
commit ce20cbe118
2 changed files with 6 additions and 1 deletions

View file

@ -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',

View file

@ -1856,7 +1856,7 @@ fprintf(stderr, " NSMatrix: selectTextAtRow --- ");
cellClass = defaultCellClass;
}
cellNew = [cellClass methodForSelector: allocSel];
cellInit = [cellClass methodForSelector: initSel];
cellInit = [cellClass instanceMethodForSelector: initSel];
DESTROY(cellPrototype);
}