Skip to content

Commit

Permalink
Fixed memory mapping rules
Browse files Browse the repository at this point in the history
  • Loading branch information
farcaller committed Feb 22, 2011
1 parent 10d2086 commit ff84cc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EGOPhotoViewer/Model/EGOPhotoSource/EGOPhotoSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/*
* Array containing photo data objects.
*/
@property(nonatomic,readonly) NSArray *photos;
@property(nonatomic,readonly,retain) NSArray *photos;

/*
* Number of photos.
Expand All @@ -54,12 +54,12 @@
/*
* URL of the image, varied URL size should set according to display size.
*/
@property(nonatomic,readonly) NSURL *URL;
@property(nonatomic,readonly,retain) NSURL *URL;

/*
* The caption of the image.
*/
@property(nonatomic,readonly) NSString *caption;
@property(nonatomic,readonly,retain) NSString *caption;

/*
* Size of the image, CGRectZero if image is nil.
Expand Down

0 comments on commit ff84cc6

Please sign in to comment.