• 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

Revision64775fe0761e342a2bd60d8be99905660e582233 (tree)
Time2010-09-12 23:39:03
Authormasakih <masakih@user...>
Commitermasakih

Log Message

[Fix] deallocメソッドの実装を忘れていたので実装した。

git-svn-id: svn+ssh://macmini/usr/local/svnrepos/BSLinkConductor/BSLinkConductor@18 061f2d1e-a732-4c5b-b008-8f2f835f3f04

Change Summary

Incremental Difference

--- a/BSLinkConductor.m
+++ b/BSLinkConductor.m
@@ -62,7 +62,19 @@ BSLinkConductor* BSLinkC;
6262
6363 return self;
6464 }
65-
65+- (void)dealloc
66+{
67+ [[NSNotificationCenter defaultCenter] removeObserver:self];
68+
69+ [tempFolder release];
70+ [tempFileDict release];
71+ [urlItemDict release];
72+ [items release];
73+ [appDefaults release];
74+
75+ [super dealloc];
76+}
77+
6678 - (AppDefaults *)preferences
6779 {
6880 return appDefaults;