• 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

BathyScapheで画像のインラインプレビューを可能にするプラグイン


Commit MetaInfo

Revision65992966d81c8ad62cedc5b0f08c375cff83d4dc (tree)
Time2012-05-19 02:02:09
Authormasakih <masakih@user...>
Commitermasakih

Log Message

[Mod] 不要になった部分を削除

Change Summary

Incremental Difference

--- a/BSInlinePreviewerEx.h
+++ b/BSInlinePreviewerEx.h
@@ -9,7 +9,5 @@
99 #import "BSInlinePreviewer.h"
1010
1111 @interface BSInlinePreviewerEx : BSInlinePreviewer
12-{
13- NSMutableDictionary *tasking;
14-}
12+
1513 @end
--- a/BSInlinePreviewerEx.m
+++ b/BSInlinePreviewerEx.m
@@ -12,25 +12,12 @@ NSString *const CMRThreadViewerDidChangeThreadNotification = @"CMRThreadViewerD
1212 #import "BSIPEReplacer.h"
1313
1414
15-@interface BSInlinePreviewer(Private)
16-- (NSRange)linkRange;
17-- (NSImage *)downloadImageURL:(NSURL *)imageURL;
18-- (NSAttributedString *)attachmentAttributedStringWithImage:(NSImage *)image;
19-- (NSImage *)notFoundImage;
20-- (NSImage *)fitImage:(NSImage *)image toSize:(NSSize)targetSize;
21-
22-- (void)showProgressPanel;
23-- (void)closeProgressPanel;
24-@end
25-
26-
2715 @implementation BSInlinePreviewerEx
2816 // Designated Initializer
2917 - (id)initWithPreferences:(AppDefaults *)prefs
3018 {
3119 self = [super initWithPreferences:prefs];
3220 if(self) {
33- tasking = [[NSMutableDictionary alloc] init];
3421 NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
3522 [nc addObserver:self
3623 selector:@selector(viewerDidEndFinishing:)