From: Alexandra Ellwood Date: Sat, 27 Sep 2008 00:44:39 +0000 (+0000) Subject: C90 compliance X-Git-Tag: krb5-1.7-alpha1~409 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f0098982775d44d490bae733f386a5432e712a8e;p=krb5.git C90 compliance ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20762 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/kim/agent/mac/PopupButton.m b/src/kim/agent/mac/PopupButton.m index e4934a9eb..d264c041b 100644 --- a/src/kim/agent/mac/PopupButton.m +++ b/src/kim/agent/mac/PopupButton.m @@ -32,19 +32,20 @@ - (void) mouseDown: (NSEvent *) event { if([self isEnabled] && ([self menu] != NULL)) { + NSEvent *menuEvent = NULL; NSPoint menuPoint = { 3, [self frame].size.height + 1 }; [self highlight: YES]; - NSEvent *menuEvent = [NSEvent mouseEventWithType: [event type] - location: [self convertPoint: menuPoint toView: NULL] - modifierFlags: [event modifierFlags] - timestamp: [event timestamp] - windowNumber: [[event window] windowNumber] - context: [event context] - eventNumber: [event eventNumber] - clickCount: [event clickCount] - pressure: [event pressure]]; + menuEvent = [NSEvent mouseEventWithType: [event type] + location: [self convertPoint: menuPoint toView: NULL] + modifierFlags: [event modifierFlags] + timestamp: [event timestamp] + windowNumber: [[event window] windowNumber] + context: [event context] + eventNumber: [event eventNumber] + clickCount: [event clickCount] + pressure: [event pressure]]; [NSMenu popUpContextMenu: [self menu] withEvent: menuEvent forView: self];