• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

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

Révision91e766217e6d9f74bf33dca0fc131fcf310b3000 (tree)
l'heure2014-02-21 07:17:27
AuteurKrzysztof Adamski <public@kada...>
CommiterKrzysztof Adamski

Message de Log

Pass CDEventsEventStreamCreationFlags to CDEvents Init Method

Change Summary

Modification

--- a/CDEvents.m
+++ b/CDEvents.m
@@ -60,10 +60,10 @@ const CDEventIdentifier kCDEventsSinceEventNow = kFSEventStreamEventIdSinceNow;
6060 // Private API
6161 @interface CDEvents () {
6262 @private
63- CDEventsEventBlock _eventBlock;
63+ CDEventsEventBlock _eventBlock;
6464
65- FSEventStreamRef _eventStream;
66- NSUInteger _eventStreamCreationFlags;
65+ FSEventStreamRef _eventStream;
66+ CDEventsEventStreamCreationFlags _eventStreamCreationFlags;
6767 }
6868
6969 // Redefine the properties that should be writeable.
@@ -249,7 +249,7 @@ streamCreationFlags:(CDEventsEventStreamCreationFlags)streamCreationFlags
249249 notificationLantency:[self notificationLatency]
250250 ignoreEventsFromSubDirs:[self ignoreEventsFromSubDirectories]
251251 excludeURLs:[self excludedURLs]
252- streamCreationFlags:(uint) _eventStreamCreationFlags];
252+ streamCreationFlags:_eventStreamCreationFlags];
253253
254254 return copy;
255255 }