• R/O
  • HTTP
  • SSH
  • HTTPS

提交

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

修訂6e5dc6f953b97d68da23131de74b28106c7478ca (tree)
時間2011-05-09 00:02:16
作者masakih <masakih@user...>
Commitermasakih

Log Message

[Fix] Clangに指摘された問題を修正。

Change Summary

差異

--- a/BEBooklogBooksExporter.m
+++ b/BEBooklogBooksExporter.m
@@ -38,7 +38,8 @@
3838
3939 - (id)init
4040 {
41- if(self = [super init]) {
41+ self = [super init];
42+ if(self) {
4243 registerDateFormatter = [[NSDateFormatter alloc] init];
4344 [registerDateFormatter setDateFormat:@"YYYY-MM-dd' 'HH':'mm':'ss"];
4445 publicateionDateFormatter = [[NSDateFormatter alloc] init];
--- a/BEMediaMarkerBooksExporter.m
+++ b/BEMediaMarkerBooksExporter.m
@@ -37,7 +37,8 @@
3737 }
3838 - (id)init
3939 {
40- if(self = [super init]) {
40+ self = [super init];
41+ if(self) {
4142 registerDateFormatter = [[NSDateFormatter alloc] init];
4243 [registerDateFormatter setDateFormat:@"YYYY/MM/dd' 'HH':'mm"];
4344 readDateFormatter = [[NSDateFormatter alloc] init];