diff --git a/ChangeLog b/ChangeLog index d6ed44406..c2459b439 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-25 00:03 Gregory John Casamento + + * Source/NSDataLinkPanel.m: Changed to use the correct method + to find and load the .gorm file for the panel. + 2003-12-23 13:46 Gregory John Casamento * Source/GSNibTemplates.m: Added a loop which retains only the diff --git a/Source/NSDataLinkPanel.m b/Source/NSDataLinkPanel.m index c8a31f4e1..f1bcfa782 100644 --- a/Source/NSDataLinkPanel.m +++ b/Source/NSDataLinkPanel.m @@ -43,9 +43,9 @@ static NSDataLinkPanel *__sharedDataLinkPanel; NSDictionary *table; self = [super init]; - panelPath = [NSBundle pathForGNUstepResource: @"GSDataLinkPanel" - ofType: @"gorm" - inDirectory: nil]; + panelPath = [GSGuiBundle() pathForResource: @"GSDataLinkPanel" + ofType: @"gorm" + inDirectory: nil]; NSLog(@"Panel path=%@",panelPath); table = [NSDictionary dictionaryWithObject: self forKey: @"NSOwner"]; if ([NSBundle loadNibFile: panelPath