mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
* Source/GSNibCompatibility.m: Implement init in NSIBHelpConnector.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23787 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
55c4004157
commit
4828fe82c3
2 changed files with 16 additions and 1 deletions
|
@ -1,6 +1,11 @@
|
|||
2006-10-07 10:20-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Source/GSNibCompatibility.m: Implement init in NSIBHelpConnector.
|
||||
|
||||
2006-10-07 10:13-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Source/GSNibCompatibility.m: Implement establishConnection.
|
||||
* Source/GSNibCompatibility.m: Implement establishConnection in
|
||||
NSIBHelpConnector.
|
||||
|
||||
2006-10-07 10:02-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
|
|
|
@ -1468,6 +1468,16 @@ static BOOL _isInInterfaceBuilder = NO;
|
|||
@end
|
||||
|
||||
@implementation NSIBHelpConnector
|
||||
- (id) init
|
||||
{
|
||||
if((self = [super init]) != nil)
|
||||
{
|
||||
_file = nil;
|
||||
_marker = @"NSToolTipHelpKey";
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithCoder: (NSCoder *)coder
|
||||
{
|
||||
if((self = [super initWithCoder: coder]) != nil)
|
||||
|
|
Loading…
Reference in a new issue