summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-06-25 23:14:42 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-06-25 23:14:42 +0000
commitf51a15e84f8ec88c183ada3fab62dd4786ab9977 (patch)
treee855a7de1def054593e95a526b074021d424eb9f /macosx/PcsxrMemoryObject.h
parentf7a0f268a330ca558e3aef3f5231ccc779ab32e7 (diff)
downloadpcsxr-f51a15e84f8ec88c183ada3fab62dd4786ab9977.tar.gz
Making the memImage property readonly in the header, but readwrite in the main file, WITHOUT mangling the setter.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85557 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemoryObject.h')
-rwxr-xr-xmacosx/PcsxrMemoryObject.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/macosx/PcsxrMemoryObject.h b/macosx/PcsxrMemoryObject.h
index 3cce4796..da85bccf 100755
--- a/macosx/PcsxrMemoryObject.h
+++ b/macosx/PcsxrMemoryObject.h
@@ -31,14 +31,13 @@ extern NSString *const memoryAnimateTimerKey;
- (id)initWithMcdBlock:(McdBlock *)infoBlock;
-@property(readonly, retain) NSString *englishName;
-@property(readonly, retain) NSString *sjisName;
-@property(readonly, retain) NSString *memName;
-@property(readonly, retain) NSString *memID;
-@property(readwrite, retain) NSImage *memImage;
-@property(readonly) int memIconCount;
-@property(readonly, getter = isNotDeleted) BOOL notDeleted;
-@property(readonly) unsigned char memFlags;
-
+@property (readonly, retain) NSString *englishName;
+@property (readonly, retain) NSString *sjisName;
+@property (readonly, retain) NSString *memName;
+@property (readonly, retain) NSString *memID;
+@property (readonly, retain) NSImage *memImage;
+@property (readonly) int memIconCount;
+@property (readonly, getter = isNotDeleted) BOOL notDeleted;
+@property (readonly) unsigned char memFlags;
@end