diff options
author | stuconnolly <stuart02@gmail.com> | 2012-07-15 11:50:55 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-07-15 11:50:55 +0000 |
commit | e94aba4e949c5ca125fd211b403697a580a6ce39 (patch) | |
tree | d120befff62f1662ebea87411bc96a7f5cce7b43 /Frameworks/QueryKit/Source/QKQueryGenericParameter.h | |
parent | c5133a64a535bccfa2c0ad333e56c8a3b02a01dc (diff) | |
download | sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.gz sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.bz2 sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.zip |
Don't explicitly define property accessor names.
Diffstat (limited to 'Frameworks/QueryKit/Source/QKQueryGenericParameter.h')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryGenericParameter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryGenericParameter.h b/Frameworks/QueryKit/Source/QKQueryGenericParameter.h index 1c782b6a..13d722c5 100644 --- a/Frameworks/QueryKit/Source/QKQueryGenericParameter.h +++ b/Frameworks/QueryKit/Source/QKQueryGenericParameter.h @@ -38,13 +38,13 @@ } /** - * @property _field The field component of the parameter. + * @property field The field component of the parameter. */ -@property(readwrite, retain, getter=field, setter=setField:) NSString *_field; +@property(readwrite, retain) NSString *field; /** - *@property _value The value component of the parameter. + *@property value The value component of the parameter. */ -@property(readwrite, retain, getter=value, setter=setValue:) id _value; +@property(readwrite, retain) id value; @end |