Changeset 3
- Timestamp:
- 12/ 7/06 10:50:21 PM (2 years ago)
- Files:
-
- trunk/CocoaICU.xcodeproj/project.pbxproj (modified) (1 diff)
- trunk/resources/CocoaICU Unit Tests-Info.plist (modified) (1 diff)
- trunk/source/ICUMatcher.h (moved) (moved from trunk/ICUMatcher.h) (2 diffs)
- trunk/source/ICUMatcher.m (moved) (moved from trunk/ICUMatcher.m) (1 diff)
- trunk/source/NSStringICUAdditions.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CocoaICU.xcodeproj/project.pbxproj
r2 r3 33 33 /* Begin PBXFileReference section */ 34 34 08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; }; 35 32A70AAB03705E1F00C91783 /* CocoaICU_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =CocoaICU_Prefix.pch; sourceTree = "<group>"; };35 32A70AAB03705E1F00C91783 /* CocoaICU_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CocoaICU_Prefix.pch; path = source/CocoaICU_Prefix.pch; sourceTree = "<group>"; }; 36 36 9389EF6B0B10EDAA000ECD6C /* libicucore.A.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.A.dylib; path = /usr/lib/libicucore.A.dylib; sourceTree = "<absolute>"; }; 37 939322570B1E6AD000DD0AF0 /* ICUMatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =ICUMatcher.h; sourceTree = "<group>"; };38 939322580B1E6AD000DD0AF0 /* ICUMatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path =ICUMatcher.m; sourceTree = "<group>"; };37 939322570B1E6AD000DD0AF0 /* ICUMatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ICUMatcher.h; path = source/ICUMatcher.h; sourceTree = "<group>"; }; 38 939322580B1E6AD000DD0AF0 /* ICUMatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ICUMatcher.m; path = source/ICUMatcher.m; sourceTree = "<group>"; }; 39 39 93E2BFE50B18BEC4001193AC /* CocoaICU Unit Tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "CocoaICU Unit Tests.octest"; sourceTree = BUILT_PRODUCTS_DIR; }; 40 40 93E2BFE60B18BEC4001193AC /* CocoaICU Unit Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "CocoaICU Unit Tests-Info.plist"; path = "resources/CocoaICU Unit Tests-Info.plist"; sourceTree = SOURCE_ROOT; }; trunk/resources/CocoaICU Unit Tests-Info.plist
r1 r3 8 8 <string>${EXECUTABLE_NAME}</string> 9 9 <key>CFBundleIdentifier</key> 10 <string> com.yourcompany.CocoaICU Unit Tests</string>10 <string>org.aarone.CocoaICU Unit Tests</string> 11 11 <key>CFBundleInfoDictionaryVersion</key> 12 12 <string>6.0</string> trunk/source/ICUMatcher.h
r2 r3 8 8 9 9 #import <Cocoa/Cocoa.h> 10 10 @class ICUPattern; 11 11 12 12 @interface ICUMatcher : NSObject { … … 17 17 -(BOOL)findFromIndex:(unsigned)index; 18 18 -(NSString *)group; 19 -(NSString *)groupAtIndex:(unsigned) 19 -(NSString *)groupAtIndex:(unsigned)groupIndex; 20 20 -(unsigned)numberOfGroups; 21 21 -(BOOL)isAtEnd; trunk/source/ICUMatcher.m
r2 r3 25 25 } 26 26 27 -(NSString *)groupAtIndex:(unsigned) 27 -(NSString *)groupAtIndex:(unsigned)groupIndex 28 { 29 30 } 31 28 32 -(unsigned)numberOfGroups 29 33 { trunk/source/NSStringICUAdditions.m
r2 r3 126 126 { 127 127 UErrorCode status = 0; 128 BOOL r = uregex_findNext([128 // BOOL r = uregex_findNext([ 129 129 } 130 130