An Objective-C wrapper for Mac OS X’s FSEvents C API.
Revision | 4a8d60f7c2da5dd15d48f26c664c900054763a76 (tree) |
---|---|
Zeit | 2013-07-03 05:21:08 |
Autor | Aron Cedercrantz <aron@cede...> |
Commiter | Aron Cedercrantz |
Merge tag '1.2.1'
Fix a memory management issue and more.
* tag '1.2.1':
@@ -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 |