From 325d3bf1d60abe5c222b729356c0e6424718ad59 Mon Sep 17 00:00:00 2001 From: das Date: Tue, 12 Aug 2003 08:49:39 +0000 Subject: * macosx/tkMacOSXMenu.c: fixed C99'ism that breaks gcc 2.95. --- ChangeLog | 4 ++++ macosx/tkMacOSXMenu.c | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 025a152..bfa27c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-08-12 Daniel Steffen + + * macosx/tkMacOSXMenu.c: fixed C99'ism that breaks gcc 2.95. + 2003-07-21 Jeff Hobbs *** 8.4.4 TAGGED FOR RELEASE *** diff --git a/macosx/tkMacOSXMenu.c b/macosx/tkMacOSXMenu.c index 6bf92f2..2180bf9 100644 --- a/macosx/tkMacOSXMenu.c +++ b/macosx/tkMacOSXMenu.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.6.2.1 2003/05/13 02:42:57 das Exp $ + * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.6.2.2 2003/08/12 08:49:39 das Exp $ */ #include "tkMacOSXInt.h" #include "tkMenuButton.h" @@ -2144,8 +2144,9 @@ TkMacOSXDispatchMenuEvent( if ((helpMenuRef != NULL) && (helpMenuRef->menuPtr != NULL)) { MenuRef outHelpMenu; MenuItemIndex itemIndex; + int newIndex; HMGetHelpMenu(&outHelpMenu, &itemIndex); - int newIndex = index - itemIndex; + newIndex = index - itemIndex; result = TkInvokeMenu(currentMenuBarInterp, helpMenuRef->menuPtr, newIndex); } -- cgit v0.12