From f6d03c0dc75581baf23ea4b0385390f8e0c1b986 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 4 Jun 1999 15:06:00 +0000 Subject: [PATCH] Tidied git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4358 72102866-910b-0410-8b05-ffd578937521 --- Source/NSControl.m | 2 +- Source/NSWindow.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NSControl.m b/Source/NSControl.m index 50e2e9f20..3fe73a7cc 100644 --- a/Source/NSControl.m +++ b/Source/NSControl.m @@ -119,7 +119,7 @@ static Class cellClass; [cell setControlView: nil]; [aCell setControlView: self]; - ASSIGN(ell, aCell); + ASSIGN(cell, aCell); } /* diff --git a/Source/NSWindow.m b/Source/NSWindow.m index 92f6091a7..8b3128ac1 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -1322,7 +1322,7 @@ static Class responderClass; break; case NSLeftMouseUp: // Left mouse up - v = [content_view hitTest: [theEvent locationInWindow]]; + v = first_responder; /* Send to the view that got the mouse down. */ [v mouseUp: theEvent]; last_point = [theEvent locationInWindow]; break;