iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ
Revision | b1c1a3cb958958c30b2da22893d039645bf907ab (tree) |
---|---|
Time | 2011-05-08 12:39:34 |
Author | masakih <masakih@user...> |
Commiter | masakih |
[Fix] typoを修正。
@@ -25,7 +25,7 @@ | ||
25 | 25 | @property (readonly) NSString *name; |
26 | 26 | |
27 | 27 | |
28 | -+ (NSArray *)attribtues; | |
28 | ++ (NSArray *)attributes; | |
29 | 29 | + (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue; |
30 | 30 | |
31 | 31 | @end |
@@ -19,7 +19,7 @@ | ||
19 | 19 | |
20 | 20 | static NSArray *attributes = nil; |
21 | 21 | |
22 | -+ (NSArray *)attribtues | |
22 | ++ (NSArray *)attributes | |
23 | 23 | { |
24 | 24 | if(attributes) return attributes; |
25 | 25 |
@@ -69,7 +69,7 @@ static NSArray *attributes = nil; | ||
69 | 69 | |
70 | 70 | + (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue |
71 | 71 | { |
72 | - for(BEExporterAttribute *attr in [self attribtues]) { | |
72 | + for(BEExporterAttribute *attr in [self attributes]) { | |
73 | 73 | if(attr.type == [typeValue integerValue]) return attr; |
74 | 74 | } |
75 | 75 | return nil; |
@@ -78,11 +78,11 @@ static NSArray *attributes = nil; | ||
78 | 78 | { |
79 | 79 | NSArray *stored = [BEPreference preference].attributes; |
80 | 80 | if(!stored) { |
81 | - attributes = [[BEExporterAttribute attribtues] retain]; | |
81 | + attributes = [[BEExporterAttribute attributes] retain]; | |
82 | 82 | return; |
83 | 83 | } |
84 | 84 | |
85 | - NSArray *origin = [BEExporterAttribute attribtues]; | |
85 | + NSArray *origin = [BEExporterAttribute attributes]; | |
86 | 86 | if([origin isEqual:stored]) { |
87 | 87 | attributes = [stored retain]; |
88 | 88 | return; |
@@ -24,7 +24,7 @@ | ||
24 | 24 | if(self) { |
25 | 25 | [self setTitle:NSLocalizedString(@"General", @"General")]; |
26 | 26 | sites = [[BERegisterSite sites] retain]; |
27 | - attributes = [[BEExporterAttribute attribtues] retain]; | |
27 | + attributes = [[BEExporterAttribute attributes] retain]; | |
28 | 28 | [self setSelection:[attributes objectAtIndex:0]]; |
29 | 29 | } |
30 | 30 | return self; |