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/QKQueryParameter.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/QKQueryParameter.h')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryParameter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryParameter.h b/Frameworks/QueryKit/Source/QKQueryParameter.h index 8cbcafd6..f3a525e6 100644 --- a/Frameworks/QueryKit/Source/QKQueryParameter.h +++ b/Frameworks/QueryKit/Source/QKQueryParameter.h @@ -44,9 +44,9 @@ } /** - * @property _operator The operator component of the parameter. + * @property operator The operator component of the parameter. */ -@property(readwrite, assign, getter=operator, setter=setOperator:) QKQueryOperator _operator; +@property(readwrite, assign) QKQueryOperator operator; + (QKQueryParameter *)queryParamWithField:(NSString *)field operator:(QKQueryOperator)op value:(id)value; |