• 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ónd5a9239124ef1f88fc056dedfffdd3be321d8bcb (tree)
Tiempo2010-04-04 03:02:59
AutorAron Cedercrantz <aron@cede...>
CommiterAron Cedercrantz

Log Message

Fixed the copyWithZone: method to reflect the current ivars.

Cambiar Resumen

Diferencia incremental

--- a/CDEvents.m
+++ b/CDEvents.m
@@ -145,10 +145,10 @@ ignoreEventsFromSubDirs:(BOOL)ignoreEventsFromSubDirs
145145 CDEvents *copy = [[CDEvents alloc] init];
146146
147147 copy->_delegate = _delegate;
148- copy->_notificationLatency = _notificationLatency;
149- copy->_ignoreEventsFromSubDirectories = _ignoreEventsFromSubDirectories;
148+ copy->_notificationLatency = [self notificationLatency];
149+ copy->_ignoreEventsFromSubDirectories = [self ignoreEventsFromSubDirectories];
150150 copy->_lastEvent = [[self lastEvent] retain];
151- copy->_isWatchingURLs = NO;
151+ copy->_sinceEventIdentifier = _sinceEventIdentifier;
152152 copy->_watchedURLs = [[self watchedURLs] copyWithZone:zone];
153153 copy->_excludedURLs = [[self excludedURLs] copyWithZone:zone];
154154
@@ -156,7 +156,6 @@ ignoreEventsFromSubDirs:(BOOL)ignoreEventsFromSubDirs
156156 }
157157
158158
159-
160159 #pragma mark Misc methods
161160
162161