mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 05:01:00 +00:00
Fixed fatal typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6680 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a08009bb35
commit
d0ea8d9369
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Jun 15 15:25:32 2000 Nicola Pero <nicola@brainstorm.co.uk>
|
||||||
|
|
||||||
|
* Source/NSTableView.m ([-columnAtPoint:]): Fixed fatal typo.
|
||||||
|
|
||||||
Tue Jun 13 19:36:37 2000 Nicola Pero <nicola@brainstorm.co.uk>
|
Tue Jun 13 19:36:37 2000 Nicola Pero <nicola@brainstorm.co.uk>
|
||||||
|
|
||||||
* Source/NSTableView.m ([-scrollRowToVisible:]): Implemented.
|
* Source/NSTableView.m ([-scrollRowToVisible:]): Implemented.
|
||||||
|
|
|
@ -629,7 +629,7 @@ byExtendingSelection: (BOOL) flag
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
while ((aPoint.x < _columnOrigins[i]) && (i < _numberOfColumns))
|
while ((aPoint.x > _columnOrigins[i]) && (i < _numberOfColumns))
|
||||||
{
|
{
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue