• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

広告パネルを透明にするBathyScapheプラグイン


Commit MetaInfo

Révision1c78188378977dd386aae22b1359393ba4610274 (tree)
l'heure2015-03-09 23:24:00
Auteurmasakih <masakih@user...>
Commitermasakih

Message de Log

不要な処理を削除

Change Summary

Modification

--- a/AdAlphaZero/AdAlphaZero.m
+++ b/AdAlphaZero/AdAlphaZero.m
@@ -15,23 +15,18 @@
1515
1616 @implementation AdAlphaZero
1717
18-static NSWindowController *wCon = nil;
19-
2018 + (void)load
2119 {
2220 static dispatch_once_t onceToken;
2321 dispatch_once(&onceToken, ^{
24- NSLog(@"Enter %s", __PRETTY_FUNCTION__);
25-
26- wCon = [NSClassFromString(@"BSAdWindowController") sharedInstance];
22+ NSWindowController *wCon = [NSClassFromString(@"BSAdWindowController") sharedInstance];
2723 [wCon.window setAlphaValue:0.0];
2824 });
2925 }
3026
3127 - (id)initWithPreferences:(AppDefaults *)prefs
3228 {
33- self = [super init];
34- return self;
29+ return [super init];
3530 }
3631
3732 - (BOOL)previewLink:(NSURL *)url { return NO; }