diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-12 22:50:37 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-12 22:50:37 +0000 |
| commit | b83c8fe686c5374b38b31510f9803d3908d0c4f8 (patch) | |
| tree | ce9eb52a3e041128304bd79a2065c75029aca9a9 /macosx/PcsxrPlugin.h | |
| parent | 98f9382fb8307e539091454392ca658648f722b8 (diff) | |
| download | pcsxr-b83c8fe686c5374b38b31510f9803d3908d0c4f8.tar.gz | |
Changing Mac getters to be more Objective-C.
Getters in Objective-C are just named what they are getting, I.E. "getVariable" isn't valid, but "variable" is.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72232 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrPlugin.h')
| -rw-r--r-- | macosx/PcsxrPlugin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/PcsxrPlugin.h b/macosx/PcsxrPlugin.h index 9594fd27..f0721161 100644 --- a/macosx/PcsxrPlugin.h +++ b/macosx/PcsxrPlugin.h @@ -20,14 +20,14 @@ int active; } -+ (NSString *)getPrefixForType:(int)type; -+ (NSString *)getDefaultKeyForType:(int)type; -+ (char **)getConfigEntriesForType:(int)type; ++ (NSString *)prefixForType:(int)type; ++ (NSString *)defaultKeyForType:(int)type; ++ (char **)configEntriesForType:(int)type; - (id)initWithPath:(NSString *)aPath; -- (NSString *)getDisplayVersion; -- (int)getType; +- (NSString *)displayVersion; +- (int)type; - (NSString *)path; - (NSUInteger)hash; - (NSString *)description; |
