Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/rastersize/CDEvents into…
Browse files Browse the repository at this point in the history
… develop

* 'develop' of https://github.com/rastersize/CDEvents:
  Make properties explicitly strong.
  CDEvent should maintain strong references to its properties.
  Use relative import to allow compiling in other projects.
  • Loading branch information
rastersize committed Jul 2, 2013
2 parents 89bd5f0 + 7d6ad26 commit 88c6487
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CDEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ typedef FSEventStreamEventFlags CDEventFlags;
*
* @since 1.0.0
*/
@property (unsafe_unretained, readonly) NSDate *date;
@property (strong, readonly) NSDate *date;

/**
* The URL of the item which changed.
Expand All @@ -98,7 +98,7 @@ typedef FSEventStreamEventFlags CDEventFlags;
*
* @since 1.0.0
*/
@property (unsafe_unretained, readonly) NSURL *URL;
@property (strong, readonly) NSURL *URL;


/** @name Getting Event Flags */
Expand Down
2 changes: 1 addition & 1 deletion CDEvents.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#import <Foundation/Foundation.h>
#import <CoreServices/CoreServices.h>

#import <CDEvents/CDEvent.h>
#import "CDEvent.h"

@protocol CDEventsDelegate;

Expand Down

0 comments on commit 88c6487

Please sign in to comment.