mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-22 02:51:05 +00:00
Fixed NSBundle stepTalkBundleNames to use .bundle
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@15697 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1b7a46583b
commit
95e4843772
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2003 Jan 25
|
||||
|
||||
* STBundleInfo: Fixed NSBundle stepTalkBundleNames to use .bundle file
|
||||
extension
|
||||
|
||||
2003 Jan 24
|
||||
|
||||
* STBundleInfo: Use info from ScriptingInfo.plist instead of bundle's main
|
||||
|
|
|
@ -58,7 +58,7 @@ static NSMutableDictionary *bundleInfoDict;
|
|||
NSMutableArray *names = [NSMutableArray array];
|
||||
NSString *name;
|
||||
|
||||
bundles = STFindAllResources(@"Bundles", @"bundle");
|
||||
bundles = STFindAllResources(@"Bundles", STModuleExtension);
|
||||
|
||||
enumerator = [bundles objectEnumerator];
|
||||
|
||||
|
@ -69,7 +69,7 @@ static NSMutableDictionary *bundleInfoDict;
|
|||
[names addObject:name];
|
||||
}
|
||||
|
||||
bundles = STFindAllResources(@"Modules", @"stmodule");
|
||||
bundles = STFindAllResources(@"Modules", STModuleExtension);
|
||||
|
||||
enumerator = [bundles objectEnumerator];
|
||||
|
||||
|
|
Loading…
Reference in a new issue