• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

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

Revisión21eb0374773744e8f801cdd637eb49ad202aedf5 (tree)
Tiempo2010-04-04 03:02:03
AutorAron Cedercrantz <aron@cede...>
CommiterAron Cedercrantz

Log Message

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

Cambiar Resumen

Diferencia incremental

--- 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