• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ


Commit MetaInfo

Revisionb1c1a3cb958958c30b2da22893d039645bf907ab (tree)
Time2011-05-08 12:39:34
Authormasakih <masakih@user...>
Commitermasakih

Log Message

[Fix] typoを修正。

Change Summary

Incremental Difference

--- a/BEExporterAttribute.h
+++ b/BEExporterAttribute.h
@@ -25,7 +25,7 @@
2525 @property (readonly) NSString *name;
2626
2727
28-+ (NSArray *)attribtues;
28++ (NSArray *)attributes;
2929 + (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue;
3030
3131 @end
--- a/BEExporterAttribute.m
+++ b/BEExporterAttribute.m
@@ -19,7 +19,7 @@
1919
2020 static NSArray *attributes = nil;
2121
22-+ (NSArray *)attribtues
22++ (NSArray *)attributes
2323 {
2424 if(attributes) return attributes;
2525
@@ -69,7 +69,7 @@ static NSArray *attributes = nil;
6969
7070 + (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue
7171 {
72- for(BEExporterAttribute *attr in [self attribtues]) {
72+ for(BEExporterAttribute *attr in [self attributes]) {
7373 if(attr.type == [typeValue integerValue]) return attr;
7474 }
7575 return nil;
@@ -78,11 +78,11 @@ static NSArray *attributes = nil;
7878 {
7979 NSArray *stored = [BEPreference preference].attributes;
8080 if(!stored) {
81- attributes = [[BEExporterAttribute attribtues] retain];
81+ attributes = [[BEExporterAttribute attributes] retain];
8282 return;
8383 }
8484
85- NSArray *origin = [BEExporterAttribute attribtues];
85+ NSArray *origin = [BEExporterAttribute attributes];
8686 if([origin isEqual:stored]) {
8787 attributes = [stored retain];
8888 return;
--- a/BEGeneralPreference.m
+++ b/BEGeneralPreference.m
@@ -24,7 +24,7 @@
2424 if(self) {
2525 [self setTitle:NSLocalizedString(@"General", @"General")];
2626 sites = [[BERegisterSite sites] retain];
27- attributes = [[BEExporterAttribute attribtues] retain];
27+ attributes = [[BEExporterAttribute attributes] retain];
2828 [self setSelection:[attributes objectAtIndex:0]];
2929 }
3030 return self;