changed terminate type to BOOL since it is one and the value froma delegate got wrongly cast

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26307 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2008-03-16 01:02:52 +00:00
parent 0d146e1c55
commit 3d3b665f6a

View file

@ -3203,7 +3203,7 @@ struct _DelegateWrapper
*/
- (void) terminate: (id)sender
{
int shouldTerminate = YES;
BOOL shouldTerminate = YES;
if ([_delegate respondsToSelector: @selector(applicationShouldTerminate:)])
{