diff --git a/ChangeLog b/ChangeLog index aa74ebbd9..8038d9b10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-20 Fred Kiefer + + * Source/GSTitleView.m: Corrected last change the signature of + [rightMouseDown:] had been changed instead of [menuForEvent:]. + 2005-10-20 Fred Kiefer * Header/NSInputManager.h diff --git a/Source/GSTitleView.m b/Source/GSTitleView.m index 3e77f13e3..304dade63 100644 --- a/Source/GSTitleView.m +++ b/Source/GSTitleView.m @@ -351,12 +351,12 @@ } // We do not need app menu over menu -- (NSMenu *) rightMouseDown: (NSEvent*)theEvent +- (void) rightMouseDown: (NSEvent*)theEvent { } // We do not want to popup menus in this menu. -- (id) menuForEvent: (NSEvent*) theEvent +- (NSMenu *) menuForEvent: (NSEvent*) theEvent { return nil; }