Skeleton implementation of NSIBHelpConnector class.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23080 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-06-18 18:40:11 +00:00
parent 3ef002aeed
commit 27d8140c40
3 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2006-06-18 14:38 Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/Additions/GNUstepGUI/GSNibCompatibility.h: Added
NSIBHelpConnector declaration.
* Source/GSNibCompatibility.m: Added skeleton implementation of
NSIBHelpConnector.
2006-06-17 20:39 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GSNibCompatibility.m: Resize window to window rect

View file

@ -49,7 +49,6 @@
- (id) realObject;
@end
typedef struct _GSWindowTemplateFlags
{
#ifdef WORDS_BIGENDIAN
@ -79,6 +78,10 @@ typedef struct _GSWindowTemplateFlags
#endif
} GSWindowTemplateFlags;
// help connector class...
@interface NSIBHelpConnector : NSNibConnector
@end
/**
* This class acts as a placeholder for the window. It doesn't derive from
* NSWindow for two reasons. First, it shouldn't instantiate a window immediately

View file

@ -1300,3 +1300,7 @@ static BOOL _isInInterfaceBuilder = NO;
@implementation _NSCornerView
@end
@implementation NSIBHelpConnector
@end