• 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のSQLiteデータベース内を覗くアプリ


Commit MetaInfo

Révision95dc27ae292cce6b25900a433baea5f0b8cad0e9 (tree)
l'heure2008-07-06 11:32:53
Auteurmasakih <masakih@user...>
Commitermasakih

Message de Log

不要ではあるが、とりあえず-(void)deallocを実装した。

git-svn-id: svn+ssh://macmini/usr/local/svnrepos/BSDBViewer/BSDBViewer@14 477addb1-df5c-4826-a637-c2b1bdcd60d4

Change Summary

Modification

--- a/BSDBBoardSource.m
+++ b/BSDBBoardSource.m
@@ -4,6 +4,13 @@
44
55 @implementation BSDBBoardSource
66
7+- (void)dealloc
8+{
9+ [boards release];
10+
11+ [super dealloc];
12+}
13+
714 - (void)setDelegate:(id)newDelegate
815 {
916 if(delegate == newDelegate) return;
--- a/BSDBThreadSource.m
+++ b/BSDBThreadSource.m
@@ -4,6 +4,14 @@
44
55 @implementation BSDBThreadSource
66
7+- (void)dealloc
8+{
9+ [threads release];
10+ [boardID release];
11+
12+ [super dealloc];
13+}
14+
715 - (void)setDelegate:(id)newDelegate
816 {
917 if(delegate == newDelegate) return;
--- a/BSDBViewer.m
+++ b/BSDBViewer.m
@@ -7,9 +7,15 @@
77 @implementation BSDBViewer
88
99 static NSString *const BSDBViewerSQLiteDBKey = @"BSDBViewerSQLiteDBKey";
10-
1110 static NSString *const InProgressKey = @"inProgress";
1211
12+- (void)dealloc
13+{
14+ [boardNameCache release];
15+
16+ [super dealloc];
17+}
18+
1319 NSString *resolveAlias(NSString *path)
1420 {
1521 NSString *newPath = nil;