diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-06-25 23:14:42 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-06-25 23:14:42 +0000 |
| commit | f51a15e84f8ec88c183ada3fab62dd4786ab9977 (patch) | |
| tree | e855a7de1def054593e95a526b074021d424eb9f /macosx/PcsxrMemoryObject.h | |
| parent | f7a0f268a330ca558e3aef3f5231ccc779ab32e7 (diff) | |
| download | pcsxr-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-x | macosx/PcsxrMemoryObject.h | 17 |
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 |
