• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

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

An Objective-C wrapper for Mac OS X’s FSEvents C API.


Commit MetaInfo

修訂21eb0374773744e8f801cdd637eb49ad202aedf5 (tree)
時間2010-04-04 03:02:03
作者Aron Cedercrantz <aron@cede...>
CommiterAron Cedercrantz

Log Message

Added calls to the dispose event stream method in the dealloc and finalize methods.

Change Summary

差異

--- a/CDEvents.m
+++ b/CDEvents.m
@@ -60,7 +60,7 @@ static void CDEventsCallback(
6060 #pragma mark Init/dealloc/finalize methods
6161 - (void)dealloc
6262 {
63- [self stopWatchingURLs];
63+ [self disposeEventStream];
6464
6565 _delegate = nil;
6666
@@ -73,7 +73,7 @@ static void CDEventsCallback(
7373
7474 - (void)finalize
7575 {
76- [self stopWatchingURLs];
76+ [self disposeEventStream];
7777
7878 _delegate = nil;
7979