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:
rmottola 2008-03-16 01:02:52 +00:00
parent eb32df9161
commit fc01e9e8ec

View file

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