Changed the name of NSView notifications

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2373 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-08-05 22:33:00 +00:00
parent 6f7b6620d0
commit 351111bf67
2 changed files with 8 additions and 2 deletions

View file

@ -20,6 +20,8 @@ Tue Aug 5 14:39:29 1997 Ovidiu Predescu <ovidiu@net-community.com>
* Source/NSView.m: Post notifications if needed when a frame or bound
change.
* Source/externs.m: Changed the name of NSView notification to conform
to the new ones in OS 4.x.
Mon Aug 04 13:16:54 1997 Scott Christley <scottc@ruth.net-community.com>

View file

@ -242,8 +242,12 @@ NSString *NSTextDidEndEditingNotification = @"NSTextDidEndEditingNotification";
NSString *NSTextDidChangeNotification = @"NSTextDidChangeNotification";
// NSView notifications
NSString *NSViewFrameChangedNotification = @"NSViewFrameChangedNotification";
NSString *NSViewFocusChangedNotification = @"NSViewFocusChangedNotification";
NSString *NSViewFocusDidChangeNotification
= @"NSViewFocusDidChangeNotification";
NSString *NSViewFrameDidChangeNotification
= @"NSViewFrameDidChangeNotification";
NSString *NSViewBoundsDidChangeNotification
= @"NSViewBoundsDidChangeNotification";
// NSWindow notifications
NSString *NSWindowDidBecomeKeyNotification = @"WindowDidBecomeKey";