Fixes to allow the library compile under NeXT PDO.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2396 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ovidiu Predescu 1997-08-27 21:20:19 +00:00
parent 77be56606f
commit 38a4416030
11 changed files with 65 additions and 23 deletions

View file

@ -33,6 +33,10 @@
#include <Foundation/NSRunLoop.h>
#include <Foundation/NSAutoreleasePool.h>
#ifdef NEXT_PDO
# include <Foundation/NSConnection.h>
#endif
#include <DPSClient/NSDPSContext.h>
#include <AppKit/NSApplication.h>
#include <AppKit/NSPopUpButton.h>
@ -518,7 +522,7 @@ static id NSApp;
//
if ([aTarget respondsToSelector:aSelector])
{
[aTarget perform:aSelector withObject:sender];
[aTarget performSelector:aSelector withObject:sender];
return YES;
}