mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Correction for bug#15348.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22275 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fb2b9aa03e
commit
8b0935da69
1 changed files with 1 additions and 3 deletions
|
@ -168,7 +168,6 @@
|
|||
{
|
||||
if ((self = [super init]) != nil)
|
||||
{
|
||||
NSString *bundlePath = nil;
|
||||
NSString *fileName = nil;
|
||||
|
||||
if (bundle == nil)
|
||||
|
@ -177,8 +176,7 @@
|
|||
}
|
||||
|
||||
// initialize the bundle...
|
||||
bundlePath = [bundle pathForNibResource: nibNamed];
|
||||
fileName = [bundlePath stringByAppendingPathComponent: nibNamed];
|
||||
fileName = [bundle pathForNibResource: nibNamed];
|
||||
|
||||
// load the nib data into memory...
|
||||
[self _readNibData: fileName];
|
||||
|
|
Loading…
Reference in a new issue