An Objective-C wrapper for Mac OS X’s FSEvents C API.
Revision | 88c64873d231c459fe03bcc0f3d6fdb7067f4dee (tree) |
---|---|
Zeit | 2013-07-03 05:17:39 |
Autor | Aron Cedercrantz <aron@cede...> |
Commiter | Aron Cedercrantz |
Merge branch 'develop' of https://github.com/rastersize/CDEvents into develop
* 'develop' of https://github.com/rastersize/CDEvents:
@@ -89,7 +89,7 @@ typedef FSEventStreamEventFlags CDEventFlags; | ||
89 | 89 | * |
90 | 90 | * @since 1.0.0 |
91 | 91 | */ |
92 | -@property (unsafe_unretained, readonly) NSDate *date; | |
92 | +@property (strong, readonly) NSDate *date; | |
93 | 93 | |
94 | 94 | /** |
95 | 95 | * The URL of the item which changed. |
@@ -98,7 +98,7 @@ typedef FSEventStreamEventFlags CDEventFlags; | ||
98 | 98 | * |
99 | 99 | * @since 1.0.0 |
100 | 100 | */ |
101 | -@property (unsafe_unretained, readonly) NSURL *URL; | |
101 | +@property (strong, readonly) NSURL *URL; | |
102 | 102 | |
103 | 103 | |
104 | 104 | /** @name Getting Event Flags */ |
@@ -38,7 +38,7 @@ | ||
38 | 38 | #import <Foundation/Foundation.h> |
39 | 39 | #import <CoreServices/CoreServices.h> |
40 | 40 | |
41 | -#import <CDEvents/CDEvent.h> | |
41 | +#import "CDEvent.h" | |
42 | 42 | |
43 | 43 | @protocol CDEventsDelegate; |
44 | 44 |