BathyScapheの中身をぐちゃぐちゃに
Révision | 2c442795360799602fb1b8339c6ad83c9d4b4ddc (tree) |
---|---|
l'heure | 2012-05-01 23:12:10 |
Auteur | masakih <masakih@user...> |
Commiter | masakih |
[Mod] i386でビルド出来るように修正
@@ -13,6 +13,14 @@ | ||
13 | 13 | @protocol KMBSLogPopUpOwner; |
14 | 14 | |
15 | 15 | @interface KMBSLogPopUp : NSObject |
16 | +#if !__LP64__ | |
17 | +{ | |
18 | + KMDocument *_doc; | |
19 | + NSTextView *_documentView; | |
20 | + id <KMBSLogPopUpOwner> _owner; | |
21 | +} | |
22 | +#endif | |
23 | + | |
16 | 24 | @property (assign) KMDocument *doc; |
17 | 25 | @property (assign) NSTextView *documentView; |
18 | 26 |
@@ -14,7 +14,7 @@ | ||
14 | 14 | |
15 | 15 | #if !__LP64__ |
16 | 16 | @class KMHistoryStack; |
17 | -@class KMReplyMeseanger; | |
17 | +@class KMReplyMessenger; | |
18 | 18 | @class KMBSLogViewDelegate; |
19 | 19 | @class KMBSLogPopUp; |
20 | 20 | #endif |
@@ -35,13 +35,13 @@ | ||
35 | 35 | NSTextContainer *_textContainer; |
36 | 36 | BOOL _hasTitleRuler; |
37 | 37 | |
38 | - KMReplyMessenger *messenger; | |
38 | + KMReplyMessenger *_messenger; | |
39 | 39 | |
40 | 40 | @private |
41 | 41 | NSTextStorage *_privateTextStorage; |
42 | 42 | KMHistoryStack *_histories; |
43 | - KMBSLogViewDelegate *logViewDelegate; | |
44 | - KMBSLogPopUp *popUp; | |
43 | + KMBSLogViewDelegate *_logViewDelegate; | |
44 | + KMBSLogPopUp *_popUp; | |
45 | 45 | #endif |
46 | 46 | } |
47 | 47 | @property (nonatomic, retain) KMStatusLineViewController *statusLine; |
@@ -18,6 +18,13 @@ | ||
18 | 18 | @protocol KMBSLogViewDelegateOwner; |
19 | 19 | |
20 | 20 | @interface KMBSLogViewDelegate : NSObject <NSTextViewDelegate> |
21 | +#if !__LP64__ | |
22 | +{ | |
23 | + KMDocument *_doc; | |
24 | + id <KMBSLogViewDelegateOwner> _owner; | |
25 | +} | |
26 | +#endif | |
27 | + | |
21 | 28 | @property (assign) KMDocument *doc; |
22 | 29 | @property (assign) id <KMBSLogViewDelegateOwner> owner; |
23 | 30 | @end |
@@ -11,6 +11,14 @@ | ||
11 | 11 | #import "KMDocument.h" |
12 | 12 | |
13 | 13 | @interface KMReplyMessenger : NSObject |
14 | +#if !__LP64__ | |
15 | +{ | |
16 | + KMDocument *_document; | |
17 | + NSRange _range; | |
18 | + NSUInteger _index; | |
19 | + NSString *_string; | |
20 | +} | |
21 | +#endif | |
14 | 22 | |
15 | 23 | @property (assign) KMDocument *document; |
16 | 24 | @property NSRange range; |