masakih

BooksExporter

  • R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

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

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


コミットメタ情報

リビジョンd658a8ae171862d13330b68b7959091a656b06c2 (tree)
日時2011-05-08 12:35:18
作者masakih <masakih@user...>
コミッターmasakih

ログメッセージ

[New] 前回保存した時のエクスポートタイプを保存するようにした。

変更サマリ

差分

--- a/BEExportAccessoryViewController.m
+++ b/BEExportAccessoryViewController.m
@@ -8,6 +8,8 @@
88
99 #import "BEExportAccessoryViewController.h"
1010
11+#import "BEPreference.h"
12+
1113 @interface BEExportAccessoryViewController (BEPrivate)
1214 - (void)conformSavePanel;
1315 @end
@@ -19,6 +21,7 @@
1921 - (id)init
2022 {
2123 self = [super initWithNibName:@"BEExportAccessoryView" bundle:nil];
24+ self.type = [BEPreference preference].exportType;
2225 return self;
2326 }
2427 - (void)dealloc
@@ -53,6 +56,7 @@
5356 [type autorelease];
5457 type = [new retain];
5558
59+ [BEPreference preference].exportType = type;
5660
5761 [self conformSavePanel];
5862 }